diff --git a/src/main/java/neatlogic/module/tenant/api/InitConfigGetApi.java b/src/main/java/neatlogic/module/tenant/api/InitConfigGetApi.java
index 6f8bb8dee770fa67aec68ae8c7beeddfca83df10..283f657eb5f132ed4ab37fa0f577c91507adb6a8 100644
--- a/src/main/java/neatlogic/module/tenant/api/InitConfigGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/InitConfigGetApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.config.Config;
import neatlogic.framework.dto.ThemeVo;
import neatlogic.framework.restful.annotation.*;
@@ -33,6 +35,7 @@ import java.util.HashSet;
import java.util.Set;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class InitConfigGetApi extends PrivateApiComponentBase {
private final Logger logger = LoggerFactory.getLogger(InitConfigGetApi.class);
diff --git a/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditEnableBatchUpdateApi.java b/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditEnableBatchUpdateApi.java
index 0f194befc2cb3ac9a88def4217afa2ec618e34b7..5fa0195a455a06eed7cf786c50bec87f29243b12 100644
--- a/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditEnableBatchUpdateApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditEnableBatchUpdateApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.apiaudit;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.Input;
@@ -33,6 +35,7 @@ import javax.annotation.Resource;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
public class ApiAuditEnableBatchUpdateApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditGroupSearchApi.java b/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditGroupSearchApi.java
index 60bde755ac66d578f640f3c26aa8129ee292f641..15559a6d8cbfbfcb9e4f54fc0bf2e9f05e47e987 100644
--- a/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditGroupSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditGroupSearchApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.apiaudit;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import org.springframework.stereotype.Service;
import com.alibaba.fastjson.JSONObject;
@@ -39,7 +40,7 @@ import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
*/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ApiAuditGroupSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditSearchApi.java b/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditSearchApi.java
index 10ed2afb59c426355974465ba82050868f8dd03c..a75b5063aa3188517c8fea7e754472ad10b54711 100644
--- a/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiAuditSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.apiaudit;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -35,7 +37,7 @@ import java.util.List;
*/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ApiAuditSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiOperationTypeListApi.java b/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiOperationTypeListApi.java
index 0fbc9635bd007a22e29d0a13a3ce892498658aa0..2bf10e477bf84475444fd18ecdd7acbeda200809 100644
--- a/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiOperationTypeListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/apiaudit/ApiOperationTypeListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.apiaudit;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.Description;
@@ -32,7 +33,7 @@ import java.util.List;
@Deprecated
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ApiOperationTypeListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageApiHandlerListForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageApiHandlerListForSelectApi.java
index b5ae0daf38835ab522bcfea99295a73bd4a89bd4..aa0299ef5f112fab1c35eda702bb1fae9c425a5c 100644
--- a/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageApiHandlerListForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageApiHandlerListForSelectApi.java
@@ -20,6 +20,7 @@ import java.util.Comparator;
import java.util.List;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import org.springframework.stereotype.Service;
import com.alibaba.fastjson.JSONObject;
@@ -36,7 +37,7 @@ import neatlogic.framework.restful.core.publicapi.PublicApiComponentFactory;
import neatlogic.framework.restful.dto.ApiHandlerVo;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ApiManageApiHandlerListForSelectApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageAuditListApi.java b/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageAuditListApi.java
index 75733ef8f568c201ba68fbdbf809c86cdd5f4fed..8e3084f440976d2b5b5bf1d0434903a1becdac03 100644
--- a/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageAuditListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageAuditListApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.apimanage;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.systemuser.SystemUserFactory;
import neatlogic.framework.common.util.PageUtil;
@@ -41,7 +43,7 @@ import java.util.Date;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ApiManageAuditListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageAuthTypeListForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageAuthTypeListForSelectApi.java
index e64c18e059f3b173d09211cbb6ec6244938a83a8..082221a407fb51cb83f9d8739aca276864a9f147 100644
--- a/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageAuthTypeListForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/apimanage/ApiManageAuthTypeListForSelectApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.apimanage;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.auth.core.ApiAuthFactory;
@@ -27,6 +29,7 @@ import org.springframework.stereotype.Service;
@Deprecated
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ApiManageAuthTypeListForSelectApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/auditconfig/GetAuditConfigApi.java b/src/main/java/neatlogic/module/tenant/api/auditconfig/GetAuditConfigApi.java
index 703499953c83babed358ee42cdd6b6bbe8b65703..b187490b1ca757c16df70cce579da888a53ebcba 100644
--- a/src/main/java/neatlogic/module/tenant/api/auditconfig/GetAuditConfigApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/auditconfig/GetAuditConfigApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.auditconfig;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -27,6 +29,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetAuditConfigApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/auth/AuthGroupApi.java b/src/main/java/neatlogic/module/tenant/api/auth/AuthGroupApi.java
index 8419adbc294eb4c6c46dbca38d27828a05059214..b222f75c1bc38d28d96d45ccc9c3625b8d606a8d 100644
--- a/src/main/java/neatlogic/module/tenant/api/auth/AuthGroupApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/auth/AuthGroupApi.java
@@ -18,8 +18,10 @@ package neatlogic.module.tenant.api.auth;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
+import neatlogic.framework.auth.core.AuthAction;
import neatlogic.framework.auth.core.AuthBase;
import neatlogic.framework.auth.core.AuthFactory;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dto.module.ModuleGroupVo;
import neatlogic.framework.restful.annotation.Description;
@@ -37,7 +39,7 @@ import java.util.Set;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class AuthGroupApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/auth/AuthManageSearchApi.java b/src/main/java/neatlogic/module/tenant/api/auth/AuthManageSearchApi.java
index 95c4833d39740212e0784249905bc4d193d3c86b..db540b96ad1a3d116834671bad0acacaf9388ccb 100644
--- a/src/main/java/neatlogic/module/tenant/api/auth/AuthManageSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/auth/AuthManageSearchApi.java
@@ -18,9 +18,11 @@ package neatlogic.module.tenant.api.auth;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
+import neatlogic.framework.auth.core.AuthAction;
import neatlogic.framework.auth.core.AuthBase;
import neatlogic.framework.auth.core.AuthCSBase;
import neatlogic.framework.auth.core.AuthFactory;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.util.ModuleUtil;
import neatlogic.framework.dao.mapper.RoleMapper;
@@ -38,7 +40,7 @@ import javax.annotation.Resource;
import java.util.*;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class AuthManageSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/auth/AuthModuleGetApi.java b/src/main/java/neatlogic/module/tenant/api/auth/AuthModuleGetApi.java
index ac6006029a26b34317d93b2e68a52b2c9f2731ed..2e8acb34e342994fce7edc69a84f8cca5add3f37 100644
--- a/src/main/java/neatlogic/module/tenant/api/auth/AuthModuleGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/auth/AuthModuleGetApi.java
@@ -19,10 +19,12 @@ import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
import neatlogic.framework.auth.core.AuthActionChecker;
import neatlogic.framework.auth.core.AuthBase;
import neatlogic.framework.auth.core.AuthFactory;
import neatlogic.framework.auth.init.MaintenanceMode;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.config.Config;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.util.ModuleUtil;
@@ -44,7 +46,7 @@ import javax.annotation.Resource;
import java.util.*;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class AuthModuleGetApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/auth/AuthRoleSearchApi.java b/src/main/java/neatlogic/module/tenant/api/auth/AuthRoleSearchApi.java
index 4cd7ed71c8f81f38e115ef35f44f6179067796e2..dfea3a55ff0dae16d3d3a175948bc231596c8036 100644
--- a/src/main/java/neatlogic/module/tenant/api/auth/AuthRoleSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/auth/AuthRoleSearchApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.auth;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.RoleMapper;
import neatlogic.framework.dto.RoleVo;
@@ -35,7 +36,7 @@ import java.util.List;
* @create: 2020-03-13 12:03
**/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class AuthRoleSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/auth/AuthSearchApi.java b/src/main/java/neatlogic/module/tenant/api/auth/AuthSearchApi.java
index 32b293303e3c194814c866c7242b4f74df5b7da9..38119ac3726e23625fcb4fe83e4bad26e4e30b34 100644
--- a/src/main/java/neatlogic/module/tenant/api/auth/AuthSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/auth/AuthSearchApi.java
@@ -16,8 +16,10 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.auth;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
+import neatlogic.framework.auth.core.AuthAction;
import neatlogic.framework.auth.core.AuthBase;
import neatlogic.framework.auth.core.AuthFactory;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.util.ModuleUtil;
import neatlogic.framework.dao.mapper.RoleMapper;
@@ -36,7 +38,7 @@ import javax.annotation.Resource;
import java.util.*;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class AuthSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/auth/AuthUserSearchApi.java b/src/main/java/neatlogic/module/tenant/api/auth/AuthUserSearchApi.java
index d765a161990f83958d297890b42212a5bfbf91b3..e9091a2ad1d7b43867270f2b9eecbf070bc1d684 100644
--- a/src/main/java/neatlogic/module/tenant/api/auth/AuthUserSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/auth/AuthUserSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.auth;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.dao.mapper.UserMapper;
@@ -38,7 +40,7 @@ import java.util.List;
* @create: 2020-03-13 12:01
**/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class AuthUserSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/changelog/GetChangeLogVersionApi.java b/src/main/java/neatlogic/module/tenant/api/changelog/GetChangeLogVersionApi.java
index 6104ec83da7e8aca927177eab8a0bec764ac79f2..d0bbe58b444549b7caeb148175fdec4dee8852ab 100644
--- a/src/main/java/neatlogic/module/tenant/api/changelog/GetChangeLogVersionApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/changelog/GetChangeLogVersionApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.changelog;
import com.alibaba.fastjson.JSONException;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.JSONReader;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.exception.changelog.ChangelogVersionInvalidException;
import neatlogic.framework.exception.type.ParamIrregularException;
@@ -38,6 +40,7 @@ import java.util.Date;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetChangeLogVersionApi extends PrivateApiComponentBase {
@Override
diff --git a/src/main/java/neatlogic/module/tenant/api/changelog/SearchChangeLogAuditListApi.java b/src/main/java/neatlogic/module/tenant/api/changelog/SearchChangeLogAuditListApi.java
index 75cefa33c4b0d573b3018c98d0cbf77571ceb690..b51a31237674cda8ba8e5ea6b3d0601ed5fc0da0 100644
--- a/src/main/java/neatlogic/module/tenant/api/changelog/SearchChangeLogAuditListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/changelog/SearchChangeLogAuditListApi.java
@@ -19,6 +19,8 @@ package neatlogic.module.tenant.api.changelog;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.dto.ChangelogAuditVo;
@@ -34,6 +36,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SearchChangeLogAuditListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/changelog/SearchChangeLogVersionApi.java b/src/main/java/neatlogic/module/tenant/api/changelog/SearchChangeLogVersionApi.java
index 864e71234abfb8aac72d92c9a5e3fe7c5163022f..dcd6b55b269bf0232e2f4eb129014511be783f4f 100644
--- a/src/main/java/neatlogic/module/tenant/api/changelog/SearchChangeLogVersionApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/changelog/SearchChangeLogVersionApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.changelog;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -34,6 +36,7 @@ import java.util.Comparator;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SearchChangeLogVersionApi extends PrivateApiComponentBase {
@Override
diff --git a/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalEnumGetApi.java b/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalEnumGetApi.java
index fb6741c9426cd9f1a41af8a8dc9bf2e578aaf069..28893026e4e613875b607962421ae029d6c1810b 100644
--- a/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalEnumGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalEnumGetApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.constvalue;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.EnumFactory;
import neatlogic.framework.common.constvalue.IEnum;
@@ -32,7 +34,7 @@ import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UniversalEnumGetApi extends PrivateApiComponentBase {
@Override
diff --git a/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalEnumGetBatchApi.java b/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalEnumGetBatchApi.java
index 2a6105c190814a8616b01803b210f55abae6d117..cab6c873a1e8acd65bf9824ac5f45d272f24b637 100644
--- a/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalEnumGetBatchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalEnumGetBatchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.constvalue;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.EnumFactory;
import neatlogic.framework.common.constvalue.IEnum;
@@ -31,6 +33,7 @@ import org.springframework.stereotype.Service;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UniversalEnumGetBatchApi extends PrivateApiComponentBase {
@Override
diff --git a/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalSearchNamedEnumApi.java b/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalSearchNamedEnumApi.java
index f4475a50de034c61c1c7fd6d167f8138d015a9b3..f35b8660b8711cf5e58ea5b2fd4bc7b10e919d84 100644
--- a/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalSearchNamedEnumApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/constvalue/UniversalSearchNamedEnumApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.constvalue;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.EnumFactory;
import neatlogic.framework.restful.annotation.*;
@@ -25,6 +27,7 @@ import org.springframework.stereotype.Service;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UniversalSearchNamedEnumApi extends PrivateApiComponentBase {
@Override
diff --git a/src/main/java/neatlogic/module/tenant/api/dependency/DependencyCountApi.java b/src/main/java/neatlogic/module/tenant/api/dependency/DependencyCountApi.java
index 10e77527ce670ccdcae0d0f7e9c7a1ee49065f49..90a831e04f2aeb081e2b76b8d355f0848f975b5b 100644
--- a/src/main/java/neatlogic/module/tenant/api/dependency/DependencyCountApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/dependency/DependencyCountApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.dependency;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dependency.core.DependencyManager;
import neatlogic.framework.dependency.core.FromTypeFactory;
@@ -28,6 +30,7 @@ import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
import org.springframework.stereotype.Service;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class DependencyCountApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/dependency/DependencyListApi.java b/src/main/java/neatlogic/module/tenant/api/dependency/DependencyListApi.java
index a76c6d8d533cebd648778cef6236ce9169c1c800..6316aad09a116f1dd95212bf16d8917beb28e27f 100644
--- a/src/main/java/neatlogic/module/tenant/api/dependency/DependencyListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/dependency/DependencyListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.dependency;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.dto.ValueTextVo;
@@ -43,7 +45,7 @@ import java.util.List;
* @since: 2021/4/2 11:06
**/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class DependencyListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineApi.java b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineApi.java
index 03da6528f62d7cd9feedb6e952e1dc7ac86ca080..08cc30af116564df440741c67dad6e0dbc88e95e 100644
--- a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.documentonline;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.documentonline.dto.DocumentOnlineDirectoryVo;
import neatlogic.framework.restful.annotation.*;
@@ -40,6 +42,7 @@ import java.util.List;
import java.util.regex.Matcher;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetDocumentOnlineApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineDirectoryApi.java b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineDirectoryApi.java
index b83a992778638a3cc5a4efbf8c4e856aa22494b9..eb62a4366b57c7c206ab4d282668c36fa9332206 100644
--- a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineDirectoryApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineDirectoryApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.documentonline;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.RequestContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.documentonline.dto.DocumentOnlineDirectoryVo;
import neatlogic.framework.restful.annotation.*;
@@ -32,6 +34,7 @@ import java.util.Locale;
import java.util.Objects;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetDocumentOnlineDirectoryApi extends PrivateApiComponentBase {
@Override
diff --git a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineListApi.java b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineListApi.java
index 02accea6d6da05b25ffda70d527e6479a2dd77cb..8e3731185624318b95bbbeb1e0f85b5176fd20ee 100644
--- a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineListApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.documentonline;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.RequestContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -42,6 +44,7 @@ import java.util.Locale;
import java.util.Objects;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetDocumentOnlineListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineTableListApi.java b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineTableListApi.java
index 252a3825a9fc6c3052d92926cc40fac9fc07e9a4..7f858ba843ccb51cdea61a79179c7daf859c3cbc 100644
--- a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineTableListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineTableListApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.documentonline;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.RequestContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -36,6 +38,7 @@ import java.util.Locale;
import java.util.Objects;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetDocumentOnlineTableListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineUnclassifiedListApi.java b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineUnclassifiedListApi.java
index 8d7f0ee8bdc19ad3170bd5a0d8a4243ae24319fa..58416ecfd9d5b533e938a0e7e8c7982fc049fe26 100644
--- a/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineUnclassifiedListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/documentonline/GetDocumentOnlineUnclassifiedListApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.documentonline;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.RequestContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -35,6 +37,7 @@ import javax.annotation.Resource;
import java.util.*;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetDocumentOnlineUnclassifiedListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/documentonline/SearchDocumentOnlineApi.java b/src/main/java/neatlogic/module/tenant/api/documentonline/SearchDocumentOnlineApi.java
index 55b5de305a911d320b46b89a389250d12677e25e..b3a37da4069c1042e5533bc7562bc565c972dcd5 100644
--- a/src/main/java/neatlogic/module/tenant/api/documentonline/SearchDocumentOnlineApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/documentonline/SearchDocumentOnlineApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.documentonline;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.documentonline.dto.DocumentOnlineDirectoryVo;
@@ -49,6 +51,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SearchDocumentOnlineApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/expression/ExpressionListApi.java b/src/main/java/neatlogic/module/tenant/api/expression/ExpressionListApi.java
index 31125747ca590bea672adadfd5732f2c4d116b42..af9680ea0d4a01b3bc8986b4f59d53866fbc3737 100644
--- a/src/main/java/neatlogic/module/tenant/api/expression/ExpressionListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/expression/ExpressionListApi.java
@@ -19,6 +19,7 @@ import java.util.ArrayList;
import java.util.List;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.OperationType;
import org.springframework.stereotype.Service;
@@ -34,7 +35,7 @@ import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@Deprecated
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ExpressionListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/extramenu/ListExtraMenuApi.java b/src/main/java/neatlogic/module/tenant/api/extramenu/ListExtraMenuApi.java
index 1b4951d02520b7020402fbb09a59f06b74467c93..30d695b1d88be5907be83311b7c624cc3ffe61ae 100644
--- a/src/main/java/neatlogic/module/tenant/api/extramenu/ListExtraMenuApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/extramenu/ListExtraMenuApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.extramenu;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dto.AuthenticationInfoVo;
import neatlogic.framework.extramenu.dto.ExtraMenuVo;
@@ -34,6 +36,7 @@ import javax.annotation.Resource;
import java.util.*;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ListExtraMenuApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/extramenu/ListExtraMenuItemApi.java b/src/main/java/neatlogic/module/tenant/api/extramenu/ListExtraMenuItemApi.java
index 06308382ca5b9a3bd373e456e606cd8e0c113484..b301973c1bbbe10336801213cee92ab42587afd9 100644
--- a/src/main/java/neatlogic/module/tenant/api/extramenu/ListExtraMenuItemApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/extramenu/ListExtraMenuItemApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.extramenu;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dto.AuthenticationInfoVo;
import neatlogic.framework.extramenu.dto.ExtraMenuVo;
@@ -33,6 +35,7 @@ import java.util.List;
import java.util.Objects;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ListExtraMenuItemApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/file/GetFileApi.java b/src/main/java/neatlogic/module/tenant/api/file/GetFileApi.java
index 26724aa735047ef0b9ff65ec90e162a407ddb4d9..7340349edb23123448b54b17be23467359fe6e80 100644
--- a/src/main/java/neatlogic/module/tenant/api/file/GetFileApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/file/GetFileApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.file;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.file.dao.mapper.FileMapper;
import neatlogic.framework.file.dto.FileVo;
@@ -27,7 +29,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetFileApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/file/ListFileApi.java b/src/main/java/neatlogic/module/tenant/api/file/ListFileApi.java
index ce11adfa5dc0f6ba81a8a24f1bcc330013cafd43..58ae617ad58546f1f4a12823314952e88cf8ed9d 100644
--- a/src/main/java/neatlogic/module/tenant/api/file/ListFileApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/file/ListFileApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.file;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.file.dao.mapper.FileMapper;
import neatlogic.framework.file.dto.FileVo;
@@ -30,7 +32,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ListFileApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/form/FormGetApi.java b/src/main/java/neatlogic/module/tenant/api/form/FormGetApi.java
index 87055614e6454b6a3550120ac74a4e29ce995015..bcd2f997cf1b7e4bacb85106fbdf69915215d835 100644
--- a/src/main/java/neatlogic/module/tenant/api/form/FormGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/form/FormGetApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.form;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dependency.constvalue.FrameworkFromType;
import neatlogic.framework.dependency.core.DependencyManager;
@@ -36,7 +38,7 @@ import javax.annotation.Resource;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class FormGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/form/FormHandlerListApi.java b/src/main/java/neatlogic/module/tenant/api/form/FormHandlerListApi.java
index 55ab6fdc81934344feab7687517e1d81cff44988..49edbf6318cfa40143c029187dab351aaf229ad3 100644
--- a/src/main/java/neatlogic/module/tenant/api/form/FormHandlerListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/form/FormHandlerListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.form;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.form.attribute.core.FormAttributeHandlerFactory;
import neatlogic.framework.form.attribute.core.IFormAttributeHandler;
@@ -29,7 +31,7 @@ import com.alibaba.fastjson.JSONObject;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class FormHandlerListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/form/FormReferenceList.java b/src/main/java/neatlogic/module/tenant/api/form/FormReferenceList.java
index 6f131a16154f749aacc0308ed45bfffd26e6c5a6..836e9ddbae16b32006f458be568ad352aa6eb9aa 100644
--- a/src/main/java/neatlogic/module/tenant/api/form/FormReferenceList.java
+++ b/src/main/java/neatlogic/module/tenant/api/form/FormReferenceList.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.form;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -35,7 +37,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
@Deprecated
public class FormReferenceList extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/form/FormSearchApi.java b/src/main/java/neatlogic/module/tenant/api/form/FormSearchApi.java
index 5e44356f9c02a0e461462314192b3930b1e2bb2f..973be591a864813773415b232845a3945d89afff 100644
--- a/src/main/java/neatlogic/module/tenant/api/form/FormSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/form/FormSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.form;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.util.PageUtil;
import neatlogic.framework.dependency.constvalue.FrameworkFromType;
@@ -34,6 +36,7 @@ import javax.annotation.Resource;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class FormSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/form/FormSearchForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/form/FormSearchForSelectApi.java
index 38c41bac63ad431f9e5271e7591b2e83ae0e74f1..b4c47f9313c11e12d9ba35f079436fd076b218f7 100644
--- a/src/main/java/neatlogic/module/tenant/api/form/FormSearchForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/form/FormSearchForSelectApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.form;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.common.util.PageUtil;
@@ -33,6 +34,7 @@ import java.util.List;
@Service
@Deprecated
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class FormSearchForSelectApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/form/GetFormAttributeListApi.java b/src/main/java/neatlogic/module/tenant/api/form/GetFormAttributeListApi.java
index 6c08605dddfc195de791c1e53e5795f9411eca97..6331cb0c6771bf5eb7a1c54ed1dcc67291d2ca2b 100644
--- a/src/main/java/neatlogic/module/tenant/api/form/GetFormAttributeListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/form/GetFormAttributeListApi.java
@@ -18,6 +18,8 @@
package neatlogic.module.tenant.api.form;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.crossover.CrossoverServiceFactory;
import neatlogic.framework.form.dao.mapper.FormMapper;
@@ -33,7 +35,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetFormAttributeListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/form/GetFormCustomItemApi.java b/src/main/java/neatlogic/module/tenant/api/form/GetFormCustomItemApi.java
index a18401f6a735be48883e23284ac39f28a5dcb620..b85d8c71aa51c9058b3928f018edb0cde9a8780b 100644
--- a/src/main/java/neatlogic/module/tenant/api/form/GetFormCustomItemApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/form/GetFormCustomItemApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.form;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.exception.type.ParamNotExistsException;
import neatlogic.framework.form.dao.mapper.FormMapper;
@@ -29,6 +31,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetFormCustomItemApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/form/ListFormTagApi.java b/src/main/java/neatlogic/module/tenant/api/form/ListFormTagApi.java
index 8653aebe71064fe7634ad9ad5dcb048193e70118..132763b7324ecdcde0824e8d9eb7eec5265ab65d 100644
--- a/src/main/java/neatlogic/module/tenant/api/form/ListFormTagApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/form/ListFormTagApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.form;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.form.dao.mapper.FormMapper;
import neatlogic.framework.form.dto.FormAttributeVo;
@@ -37,6 +39,7 @@ import java.util.List;
import java.util.Set;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ListFormTagApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/form/SearchFormCustomItemApi.java b/src/main/java/neatlogic/module/tenant/api/form/SearchFormCustomItemApi.java
index 4b09fa8c9058ed9703b05e3aa3a0f54478a64722..b9d745410dcec81d8a693edbc55904c6e88c414f 100644
--- a/src/main/java/neatlogic/module/tenant/api/form/SearchFormCustomItemApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/form/SearchFormCustomItemApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.form;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.form.dao.mapper.FormMapper;
@@ -31,6 +33,7 @@ import javax.annotation.Resource;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SearchFormCustomItemApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/globallock/GlobalLockApi.java b/src/main/java/neatlogic/module/tenant/api/globallock/GlobalLockApi.java
index 46d22fe2454e1f97d7cc8b35b640a6600f01c633..95e4510ae6de4360fdf948439e1fee94dc6a3513 100644
--- a/src/main/java/neatlogic/module/tenant/api/globallock/GlobalLockApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/globallock/GlobalLockApi.java
@@ -1,5 +1,7 @@
package neatlogic.module.tenant.api.globallock;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.systemuser.SystemUser;
@@ -19,6 +21,7 @@ import java.util.Objects;
@Service
@AuthUser(SystemUser.AUTOEXEC)
@OperationType(type = OperationTypeEnum.OPERATE)
+@AuthAction(action = NoAuth.class)
public class GlobalLockApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/globallock/SearchGlobalLockApi.java b/src/main/java/neatlogic/module/tenant/api/globallock/SearchGlobalLockApi.java
index a4b3444acbb1fe0e8e5759e70efe76f3272667fa..51a3dce1b6bcd059cab4606f81560e8bb9dabd29 100644
--- a/src/main/java/neatlogic/module/tenant/api/globallock/SearchGlobalLockApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/globallock/SearchGlobalLockApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.globallock;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dto.globallock.GlobalLockVo;
import neatlogic.framework.globallock.GlobalLockManager;
@@ -26,7 +28,7 @@ import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SearchGlobalLockApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/globalsearch/document/DocumentRebuildApi.java b/src/main/java/neatlogic/module/tenant/api/globalsearch/document/DocumentRebuildApi.java
index 99f267307972f4238568e2c977e2aaeaebdda10c..40c40fb0eecfa13397356f0788427305b5163b8c 100644
--- a/src/main/java/neatlogic/module/tenant/api/globalsearch/document/DocumentRebuildApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/globalsearch/document/DocumentRebuildApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.globalsearch.document;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.Input;
@@ -28,6 +30,7 @@ import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.DELETE)
public class DocumentRebuildApi extends PrivateApiComponentBase {
Logger logger = LoggerFactory.getLogger(DocumentRebuildApi.class);
diff --git a/src/main/java/neatlogic/module/tenant/api/globalsearch/document/DocumentSearchApi.java b/src/main/java/neatlogic/module/tenant/api/globalsearch/document/DocumentSearchApi.java
index b6af64054fe79743d84294b9348f21453716f7a1..1ea213b0182eae655324ff4cd0f8888c7fcdf747 100644
--- a/src/main/java/neatlogic/module/tenant/api/globalsearch/document/DocumentSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/globalsearch/document/DocumentSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.globalsearch.document;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.fulltextindex.dto.globalsearch.DocumentTypeVo;
import neatlogic.framework.fulltextindex.dto.globalsearch.DocumentVo;
@@ -31,6 +33,7 @@ import org.springframework.stereotype.Service;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class DocumentSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/groupsearch/GroupSearchListApi.java b/src/main/java/neatlogic/module/tenant/api/groupsearch/GroupSearchListApi.java
index 8cd99cfb7071561db508679606881203de6f66f0..9211502f35343938b898dcc2f4e5a427599516d0 100644
--- a/src/main/java/neatlogic/module/tenant/api/groupsearch/GroupSearchListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/groupsearch/GroupSearchListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.groupsearch;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import org.springframework.stereotype.Service;
import com.alibaba.fastjson.JSONArray;
@@ -33,7 +34,7 @@ import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@Deprecated
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GroupSearchListApi extends PrivateApiComponentBase {
@Override
diff --git a/src/main/java/neatlogic/module/tenant/api/healthcheck/ToggleSqlInterceptorApi.java b/src/main/java/neatlogic/module/tenant/api/healthcheck/ToggleSqlInterceptorApi.java
index c378bf784f0067a115738b7868c75f7932f92189..b10e3ab1332e2e11d49cbbc44d2e6d94abbbbcd6 100644
--- a/src/main/java/neatlogic/module/tenant/api/healthcheck/ToggleSqlInterceptorApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/healthcheck/ToggleSqlInterceptorApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.healthcheck;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.plugin.SqlCostInterceptor;
import neatlogic.framework.healthcheck.SqlAuditManager;
@@ -29,7 +31,7 @@ import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.OPERATE)
public class ToggleSqlInterceptorApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/icon/IconListApi.java b/src/main/java/neatlogic/module/tenant/api/icon/IconListApi.java
index 701a4de57b53201ab50ff8c6a2b89b60598e1092..6c1dc76a13fdc445803e731383d12a434ce37bf8 100644
--- a/src/main/java/neatlogic/module/tenant/api/icon/IconListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/icon/IconListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.icon;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -26,7 +28,7 @@ import org.springframework.stereotype.Service;
import java.util.*;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IconListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationAuditSearchApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationAuditSearchApi.java
index ccce20c89d5db8426b93e9f97c30c1e5bc30f949..f6bed538c59c92bb22a54e3cf81004f65a597112 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationAuditSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationAuditSearchApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.integration;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.exception.util.StartTimeAndEndTimeCanNotFoundException;
@@ -38,7 +40,7 @@ import java.util.List;
import java.util.Objects;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationAuditSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationAuthenticationTypeListApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationAuthenticationTypeListApi.java
index b5e4b2e096d15c0051566e66bd3883a884a1b61b..6ab95881d27ce2579063880f874598d44cdd8be3 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationAuthenticationTypeListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationAuthenticationTypeListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.OperationType;
import org.springframework.stereotype.Service;
@@ -31,7 +33,7 @@ import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@Deprecated
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationAuthenticationTypeListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationBodyTypeListApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationBodyTypeListApi.java
index 42478f4a946e6d0abaa456b324ecf043a1d1fdd9..0be390fc515b026db8c7321b0416adb2ab9d6bbe 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationBodyTypeListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationBodyTypeListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.OperationType;
import org.springframework.stereotype.Service;
@@ -31,7 +33,7 @@ import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@Deprecated
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationBodyTypeListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationGetApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationGetApi.java
index 9a9772b5e43ead461055002158d153cb293a2ca2..821f2d9e3e504be017856e9734126454043038be 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationGetApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dependency.constvalue.FrameworkFromType;
import neatlogic.framework.dependency.core.DependencyManager;
@@ -29,6 +31,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationHandlerGetApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationHandlerGetApi.java
index f2533b2be4faa8d6f2929b7f0ed4202510b6cee0..2278065627dbb44dcf35368a2c36a0d05a94e9c4 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationHandlerGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationHandlerGetApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.integration.core.IntegrationHandlerFactory;
import neatlogic.framework.integration.dto.IntegrationHandlerVo;
@@ -27,7 +29,7 @@ import org.springframework.stereotype.Service;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationHandlerGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationHandlerListApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationHandlerListApi.java
index 1d2eca8a69eb756eff00d253d8de3b068e88a9bd..1eedd6947e88036c9d10e23af04da0a435aa7778 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationHandlerListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationHandlerListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.integration.core.IntegrationHandlerFactory;
import neatlogic.framework.integration.dto.IntegrationHandlerVo;
import neatlogic.framework.restful.annotation.Description;
@@ -27,7 +29,7 @@ import com.alibaba.fastjson.JSONObject;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationHandlerListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationListApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationListApi.java
index c2d3c53571e3e76f77b52d88ed8351d0e7a059ed..9fda83ce6ac823259e0f5bae9aaf1af0ea7df71c 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.integration.dao.mapper.IntegrationMapper;
import neatlogic.framework.integration.dto.IntegrationVo;
@@ -27,6 +29,7 @@ import org.springframework.stereotype.Service;
@Service
@Deprecated
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationParamListApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationParamListApi.java
index 82c2a414784eecab487235b24b8db43b214c146a..e6e3a3f4e7388342b3a0bf7ead6b7cf8e950a8e8 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationParamListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationParamListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.exception.integration.IntegrationHandlerNotFoundException;
import neatlogic.framework.integration.core.IIntegrationHandler;
@@ -34,7 +36,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationParamListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationParamTypeListApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationParamTypeListApi.java
index 95cda54a8f99c3694c7c775b911fcd637aa2c387..aa15baf05298420f03b43a927f60bad2461597b6 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationParamTypeListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationParamTypeListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.OperationType;
import org.springframework.stereotype.Service;
@@ -32,7 +33,7 @@ import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@Deprecated
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationParamTypeListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationSearchApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationSearchApi.java
index b699e1f0c53c2e7109121bf4ebab6b8d6604682c..6b5ae768768d73da283375543e68a034018c5886 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationSearchApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.integration;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.ParamType;
import neatlogic.framework.common.dto.BasePageVo;
@@ -38,6 +40,7 @@ import java.util.List;
import java.util.Objects;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationTransformTestApi.java b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationTransformTestApi.java
index df58b9e68745c69fc0aa4da08897cf81c177164f..9c9938e7e91e7a99adb8a15447396e526d0a25f5 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/IntegrationTransformTestApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/IntegrationTransformTestApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.integration;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.exception.integration.ParamFormatInvalidException;
import neatlogic.framework.restful.annotation.*;
@@ -28,7 +30,7 @@ import org.springframework.stereotype.Service;
import java.io.StringWriter;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class IntegrationTransformTestApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/table/TableColumnDataSearchApi.java b/src/main/java/neatlogic/module/tenant/api/integration/table/TableColumnDataSearchApi.java
index dfbfa62e72d5fdaa2b1f716e1f959be5df57eeb3..1e1e991379b322f30864563e0695c98fb1279545 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/table/TableColumnDataSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/table/TableColumnDataSearchApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.integration.table;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.crossover.CrossoverServiceFactory;
import neatlogic.framework.exception.integration.IntegrationHandlerNotFoundException;
@@ -51,6 +53,7 @@ import java.util.stream.Collectors;
@Service
@Deprecated
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TableColumnDataSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/table/TableColumnListApi.java b/src/main/java/neatlogic/module/tenant/api/integration/table/TableColumnListApi.java
index f79cf7950c283b1d81e08d87b35616c66a62681c..961a4e8dc5afbab4b175aef7b3613a5faf9a610c 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/table/TableColumnListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/table/TableColumnListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration.table;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.crossover.CrossoverServiceFactory;
import neatlogic.framework.exception.integration.IntegrationHandlerNotFoundException;
@@ -40,6 +42,7 @@ import javax.annotation.Resource;
**/
@Service
@Deprecated
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TableColumnListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/integration/table/TableDataSearchApi.java b/src/main/java/neatlogic/module/tenant/api/integration/table/TableDataSearchApi.java
index d18a8b5d3bf65916f6394cbac7effca3e0299faa..b9105397507820435a07633e890ddce169e28e90 100644
--- a/src/main/java/neatlogic/module/tenant/api/integration/table/TableDataSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/integration/table/TableDataSearchApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.integration.table;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.crossover.CrossoverServiceFactory;
@@ -32,6 +34,7 @@ import javax.annotation.Resource;
@Service
@Deprecated
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TableDataSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/license/GetLicenseInvalidMsgApi.java b/src/main/java/neatlogic/module/tenant/api/license/GetLicenseInvalidMsgApi.java
index 7bc948423f933a8f93086ec20972578b9d8e56bd..0c25fd5298a4fab29713d6a603783647db346519 100644
--- a/src/main/java/neatlogic/module/tenant/api/license/GetLicenseInvalidMsgApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/license/GetLicenseInvalidMsgApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.license;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.dto.license.LicenseInvalidVo;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.OperationType;
@@ -30,6 +32,7 @@ import org.springframework.stereotype.Service;
import java.util.Map;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetLicenseInvalidMsgApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/logger/GetLoggerStatusApi.java b/src/main/java/neatlogic/module/tenant/api/logger/GetLoggerStatusApi.java
index e2ceea6274fb60099e397f7d4d531a0a4d7d024c..979de56d1bbdab73ccec6c563ea26aeb544cb80d 100644
--- a/src/main/java/neatlogic/module/tenant/api/logger/GetLoggerStatusApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/logger/GetLoggerStatusApi.java
@@ -4,6 +4,8 @@ import ch.qos.logback.classic.LoggerContext;
import ch.qos.logback.core.util.StatusPrinter;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.RequestContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.config.Config;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.exception.core.ApiRuntimeException;
@@ -31,6 +33,7 @@ import java.util.List;
import java.util.Objects;
@Component
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetLoggerStatusApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/logger/UpdateLoggerLevelApi.java b/src/main/java/neatlogic/module/tenant/api/logger/UpdateLoggerLevelApi.java
index f40cefd99cb240bd0bce58a21922d357c4b3804f..5975e7ac14010b63785ec4cb80d5aa61804e32fa 100644
--- a/src/main/java/neatlogic/module/tenant/api/logger/UpdateLoggerLevelApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/logger/UpdateLoggerLevelApi.java
@@ -19,6 +19,8 @@ package neatlogic.module.tenant.api.logger;
import ch.qos.logback.classic.Level;
import ch.qos.logback.classic.LoggerContext;
import neatlogic.framework.asynchronization.threadlocal.RequestContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.config.Config;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.exception.core.ApiRuntimeException;
@@ -42,6 +44,7 @@ import javax.servlet.http.HttpServletRequest;
import java.util.Objects;
@Component
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
public class UpdateLoggerLevelApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/loginaudit/SearchLoginAuditApi.java b/src/main/java/neatlogic/module/tenant/api/loginaudit/SearchLoginAuditApi.java
index 47fa786009725a203c0c937f8ecb48ffebb85fed..37e9636a87f40c63e360576c6b98531d536238ac 100644
--- a/src/main/java/neatlogic/module/tenant/api/loginaudit/SearchLoginAuditApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/loginaudit/SearchLoginAuditApi.java
@@ -1,6 +1,8 @@
package neatlogic.module.tenant.api.loginaudit;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.dao.mapper.LoginMapper;
@@ -20,6 +22,7 @@ import java.util.Date;
import java.util.List;
@Component
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SearchLoginAuditApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixAttributeSearchApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixAttributeSearchApi.java
index 962cdf427f75a88a7de7dcc8d8f46211ea62d91a..dec4ee2fefd87d1cea829b13fd90c7ef0a7bbbd8 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixAttributeSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixAttributeSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dto.FieldValidResultVo;
import neatlogic.framework.exception.type.ParamNotExistsException;
@@ -46,7 +48,7 @@ import java.util.List;
* @create: 2020-03-26 19:06
**/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixAttributeSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForBatchApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForBatchApi.java
index 5b363e2b861c1c12b189a7c65da1f76dde2e689d..77b4345cc4398f3dbd8aacd6e5171fce93e33f1b 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForBatchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForBatchApi.java
@@ -2,6 +2,8 @@ package neatlogic.module.tenant.api.matrix;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.exception.type.ParamNotExistsException;
@@ -28,7 +30,7 @@ import java.util.*;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixColumnDataSearchForBatchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForSelectApi.java
index f40c135e11100f057aee2ea22c1ec2ffda7443c3..36086c58e08b41fc04f64d670785c4b2f45b83c8 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForSelectApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.matrix;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.CacheControlType;
import neatlogic.framework.common.dto.BasePageVo;
@@ -43,7 +45,7 @@ import java.util.*;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixColumnDataSearchForSelectApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForTableNewApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForTableNewApi.java
index 422a38d5dd0f3fd88afd77e91939565f7c747326..e5b549cb4cc9ec39756caa80d8b58c7c5586c30a 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForTableNewApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixColumnDataSearchForTableNewApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.CacheControlType;
import neatlogic.framework.common.dto.BasePageVo;
@@ -44,6 +46,7 @@ import java.util.*;
import java.util.stream.Collectors;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixColumnDataSearchForTableNewApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataGetApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataGetApi.java
index 234ea6e263d2a228b352472d539515a8b9762236..be38e1a44fe5ede9bef0f0921ae51863c0dfdbb4 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataGetApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.matrix.core.IMatrixDataSourceHandler;
import neatlogic.framework.matrix.core.MatrixDataSourceHandlerFactory;
@@ -33,7 +35,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixDataGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataSaveApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataSaveApi.java
index 660b4a15810d18eb0c5ade000fddeabbe03ac1c0..8ea8522f45e052bf0c0f6ea98def8bf497fff847 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataSaveApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataSaveApi.java
@@ -17,8 +17,10 @@ package neatlogic.module.tenant.api.matrix;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
import neatlogic.framework.auth.core.AuthActionChecker;
import neatlogic.framework.auth.label.MATRIX_MODIFY;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.exception.type.ParamNotExistsException;
import neatlogic.framework.exception.type.PermissionDeniedException;
@@ -53,6 +55,7 @@ import java.util.Set;
**/
@Service
@Transactional
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.CREATE)
public class MatrixDataSaveApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataSearchApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataSearchApi.java
index 3fb6ab384e9d82caeca4a9bd1ca1bbd7c0581a6d..6dfa762a49cc17dd7a148f98c190c522e72a8184 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixDataSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.dependency.constvalue.FrameworkFromType;
@@ -44,7 +46,7 @@ import java.util.stream.Collectors;
* @create: 2020-03-30 16:34
**/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixDataSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixGetApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixGetApi.java
index 663de490d49379333945acd170995e48103134fd..95b78ac8b5a85f690d6e87c1901ebfa0964084b4 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixGetApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.matrix.core.IMatrixDataSourceHandler;
import neatlogic.framework.matrix.core.MatrixDataSourceHandlerFactory;
@@ -32,6 +34,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixSearchApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixSearchApi.java
index d5eddcb9d18a27f4226ea10929dd9ac946257330..3715f37eedd250b348fa1dc23ce17b8a7bee97c7 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/MatrixSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/MatrixSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.dependency.constvalue.FrameworkFromType;
@@ -41,7 +43,7 @@ import java.util.List;
* @create: 2020-03-26 19:06
**/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest1Api.java b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest1Api.java
index 7b1de859d436b9812435cebbd06fbff669560b51..b0eb741dc75a98b48e9a18dde94eedf1f2812efb 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest1Api.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest1Api.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix.test;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.OperationType;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -30,7 +31,7 @@ import org.springframework.stereotype.Service;
* 用于矩阵外部数据源测试
*/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixExternalTest1Api extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest2Api.java b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest2Api.java
index f51c62556784e944d6414eb643a0d05520bf1a08..f6fb7842d547cceed44e6e0d55c77f2de7f47366 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest2Api.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest2Api.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix.test;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.OperationType;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -30,7 +31,7 @@ import org.springframework.stereotype.Service;
* 用于矩阵外部数据源测试
*/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixExternalTest2Api extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest3Api.java b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest3Api.java
index 95fa5d806b2cf74dde1dfb1946e4031df651689b..ed148cea3558761de08ba29e51747ac545a06409 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest3Api.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest3Api.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix.test;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.OperationType;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -30,7 +31,7 @@ import org.springframework.stereotype.Service;
* 用于矩阵外部数据源测试
*/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixExternalTest3Api extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest4Api.java b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest4Api.java
index 240ef3c06a9b312abbb3d5526a6ccd38f0ac96b1..84c81d8192bebf9b1ec7dcd56d48818da033d7fc 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest4Api.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest4Api.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix.test;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.OperationType;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -29,7 +30,7 @@ import org.springframework.stereotype.Service;
* 用于矩阵外部数据源测试
*/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixExternalTest4Api extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest5Api.java b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest5Api.java
index 26ddbe235702301804fee760bac6c00e19c6a74a..99279215458b631496eefa183a2cb5220b4c3fb3 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest5Api.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest5Api.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix.test;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.OperationType;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -29,7 +30,7 @@ import org.springframework.stereotype.Service;
* 用于矩阵外部数据源测试
*/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixExternalTest5Api extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest6Api.java b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest6Api.java
index 71ebd05da7f207fc0f9fb00d1ccf5e6818dd50bc..afd9edfabb2eafaf710189e98af43ec3aa9b57d1 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest6Api.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/test/MatrixExternalTest6Api.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix.test;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.restful.annotation.Input;
@@ -39,6 +41,7 @@ import java.util.Objects;
* @since 2021/8/5 16:44
**/
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MatrixExternalTest6Api extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/matrix/test/SzbankSubsysApi.java b/src/main/java/neatlogic/module/tenant/api/matrix/test/SzbankSubsysApi.java
index eba81a0fea326ef912b9dfee765707ea30cc70b8..995b9f45a6c46bf0d10e6bd4afc65682eee30b10 100644
--- a/src/main/java/neatlogic/module/tenant/api/matrix/test/SzbankSubsysApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/matrix/test/SzbankSubsysApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.matrix.test;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.dto.ValueTextVo;
@@ -37,6 +39,7 @@ import java.util.Objects;
* @since 2021/9/16 11:22
**/
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SzbankSubsysApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/menu/MenuDeleteApi.java b/src/main/java/neatlogic/module/tenant/api/menu/MenuDeleteApi.java
index afe99190e15b9d8a431d2063c34e8768279c550e..2319dbfaa7a8ac8d271cd3a82eaf5a3bc0a43859 100644
--- a/src/main/java/neatlogic/module/tenant/api/menu/MenuDeleteApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/menu/MenuDeleteApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.menu;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -26,7 +28,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.DELETE)
public class MenuDeleteApi extends PrivateApiComponentBase{
diff --git a/src/main/java/neatlogic/module/tenant/api/menu/MenuSaveApi.java b/src/main/java/neatlogic/module/tenant/api/menu/MenuSaveApi.java
index 869267fabc5727c58ecc818322a53de349efb7c6..1a4fea99e939d9f6a3d1faf07b21f86186552bcc 100644
--- a/src/main/java/neatlogic/module/tenant/api/menu/MenuSaveApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/menu/MenuSaveApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.menu;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -29,7 +31,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.CREATE)
public class MenuSaveApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/menu/MenuSearchApi.java b/src/main/java/neatlogic/module/tenant/api/menu/MenuSearchApi.java
index f9ea5c457c3cc10b66915b1ca3f9dfcf37cf08a0..9a9e1757a4947fd5eef942067488ec85d99a3347 100644
--- a/src/main/java/neatlogic/module/tenant/api/menu/MenuSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/menu/MenuSearchApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.menu;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -30,7 +32,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MenuSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/menu/mobile/MenuMobileListApi.java b/src/main/java/neatlogic/module/tenant/api/menu/mobile/MenuMobileListApi.java
index 3c2165b229e863f580ff3ff7dd80ed0e2e609518..c79ce4c2dce7f8d2804429aba5690aedbb32a39c 100644
--- a/src/main/java/neatlogic/module/tenant/api/menu/mobile/MenuMobileListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/menu/mobile/MenuMobileListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.menu.mobile;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@@ -25,6 +27,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MenuMobileListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessageCountApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessageCountApi.java
index bc9a73dec7654121bccff58b4be8d8d46bc104ed..e9248f90cf622d8967b63ebf68e2f58997ef1926 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessageCountApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessageCountApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.message;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.asynchronization.threadpool.CachedThreadPool;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.message.constvalue.PopUpType;
import neatlogic.framework.message.core.MessageHandlerFactory;
@@ -43,7 +45,7 @@ import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
public class MessageCountApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessageDeleteApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessageDeleteApi.java
index 586b7825091bf8c40655dd22c8ee1535cd738726..e876cc262f20934b8d5a9e69caf52cc007614801 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessageDeleteApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessageDeleteApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.message;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.message.dao.mapper.MessageMapper;
import neatlogic.framework.message.dto.MessageSearchVo;
@@ -29,7 +30,7 @@ import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.DELETE)
@Transactional
public class MessageDeleteApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerActiveUpdateApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerActiveUpdateApi.java
index 383130fb7fd54543102dde7d309cda8d5e9bf211..834f6b0469aae225c04fc44f4fb1b9441fdba0c4 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerActiveUpdateApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerActiveUpdateApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.message;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.message.constvalue.PopUpType;
import neatlogic.framework.message.core.IMessageHandler;
@@ -33,7 +34,7 @@ import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
@Transactional
public class MessageHandlerActiveUpdateApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerListApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerListApi.java
index d5a4f4133ca9087ae4c1a3dcd7bd42474bd0d5b8..851e00c709de87a457627a56772c7a78eb830bbf 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerListApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.message;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.message.core.MessageHandlerFactory;
import neatlogic.framework.message.dao.mapper.MessageMapper;
@@ -35,7 +36,7 @@ import java.util.Map;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MessageHandlerListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerPopUpUpdateApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerPopUpUpdateApi.java
index 3d04d29657af5dc48eceed9e8338ee4619f286c0..0cd8059add6fe21d80e9f43df160f55d96b620b9 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerPopUpUpdateApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessageHandlerPopUpUpdateApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.message;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.message.core.IMessageHandler;
import neatlogic.framework.message.core.MessageHandlerFactory;
@@ -32,7 +33,7 @@ import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
@Transactional
public class MessageHandlerPopUpUpdateApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessageHistoryListApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessageHistoryListApi.java
index 7cbf557ff6bac5fbe45d000da72fcbf7107d3cf5..23e60c561b81b4a3db37c164da880b66b71a6acb 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessageHistoryListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessageHistoryListApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.message;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -39,7 +41,7 @@ import java.util.Date;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MessageHistoryListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessageHistoryTreeApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessageHistoryTreeApi.java
index 4fb0f34aa91c7228744d1f058ab90049dd420604..67655a96a1eb340f2d1dd3d1509fc081f759fb2d 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessageHistoryTreeApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessageHistoryTreeApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.message;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.message.dao.mapper.MessageMapper;
import neatlogic.framework.message.dto.MessageSearchVo;
@@ -37,7 +39,7 @@ import java.util.*;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MessageHistoryTreeApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessageIsReadUpdateApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessageIsReadUpdateApi.java
index c3d1be7f3b9160b9a9a54ddd7b18d08d381b974c..48222143aba2ffb4554082d4817a5ba0791f0274 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessageIsReadUpdateApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessageIsReadUpdateApi.java
@@ -19,6 +19,8 @@ import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.message.dao.mapper.MessageMapper;
import neatlogic.framework.message.dto.MessageSearchVo;
@@ -41,7 +43,7 @@ import java.util.List;
import java.util.concurrent.TimeUnit;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
@Transactional
public class MessageIsReadUpdateApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessageListApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessageListApi.java
index 3974f1dd3a8723a481266005a0c677bba14c3785..9dcc7560fc5414cc579ff5ec8406c23dd9ac3822 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessageListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessageListApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.message;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -37,7 +38,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MessageListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/message/MessagePopUpCloseApi.java b/src/main/java/neatlogic/module/tenant/api/message/MessagePopUpCloseApi.java
index 18d0ec01d7d984899e771fc9377b8578d1c9685f..a563b3d79c0a1a343c048f9101d2ddd7f493849d 100644
--- a/src/main/java/neatlogic/module/tenant/api/message/MessagePopUpCloseApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/message/MessagePopUpCloseApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.message;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.message.dao.mapper.MessageMapper;
import neatlogic.framework.message.dto.MessageSearchVo;
@@ -31,7 +32,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
public class MessagePopUpCloseApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/mongodb/MongoDbDataSourceListApi.java b/src/main/java/neatlogic/module/tenant/api/mongodb/MongoDbDataSourceListApi.java
index 2c166b36e540a30e9ec80f7225cf7ebd35cab739..4aa0e363273c12836e847589d71c40cd0eb09943 100644
--- a/src/main/java/neatlogic/module/tenant/api/mongodb/MongoDbDataSourceListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/mongodb/MongoDbDataSourceListApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.mongodb;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.dto.MongoDbVo;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -26,6 +28,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class MongoDbDataSourceListApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/GetDefaultNotifyPolicyApi.java b/src/main/java/neatlogic/module/tenant/api/notify/GetDefaultNotifyPolicyApi.java
index 4177b0338d6b3cc7c90c29bb641b197f5c7ffd5a..a8331ec0606bb73bde29b9d3421ec0087349c3ad 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/GetDefaultNotifyPolicyApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/GetDefaultNotifyPolicyApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.notify.core.INotifyPolicyHandler;
import neatlogic.framework.notify.core.NotifyPolicyHandlerFactory;
@@ -30,6 +32,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetDefaultNotifyPolicyApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/GetNotifyPolicyDefaultTemplateApi.java b/src/main/java/neatlogic/module/tenant/api/notify/GetNotifyPolicyDefaultTemplateApi.java
index d31f9dd49dbac5c68cfa5de5a8e01063ce0b0d29..116d64be59c32e98d3fd60883e4b34fc69e8aa20 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/GetNotifyPolicyDefaultTemplateApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/GetNotifyPolicyDefaultTemplateApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.notify;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.RequestContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.notify.core.INotifyPolicyHandler;
import neatlogic.framework.notify.core.NotifyHandlerType;
@@ -47,6 +49,7 @@ import java.text.MessageFormat;
import java.util.Locale;
@Component
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetNotifyPolicyDefaultTemplateApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyHandlerListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyHandlerListApi.java
index bce7dfdf4f42f23f0919bd50b2446fd508bea7d3..58df460763b4431faf7e849b15fe6d2666960bbf 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyHandlerListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyHandlerListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.OperationType;
import org.springframework.stereotype.Service;
@@ -30,7 +31,7 @@ import neatlogic.framework.restful.annotation.Param;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyHandlerListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyConditionOptionListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyConditionOptionListApi.java
index 6c2d932f448ee512ea4c2cb2aaf57dad9d789894..08d470d877c728388fdbb5279dbf9fc4c384ccec 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyConditionOptionListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyConditionOptionListApi.java
@@ -19,6 +19,7 @@ import java.util.ArrayList;
import java.util.List;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@@ -40,7 +41,7 @@ import neatlogic.framework.notify.exception.NotifyPolicyHandlerNotFoundException
import neatlogic.framework.notify.exception.NotifyPolicyNotFoundException;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicyConditionOptionListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyGetApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyGetApi.java
index de255ae87e2e4bb0fd82b8fd18ffb45f1231dd3d..645484d746c05230377e56a62c710708b4f7f72b 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyGetApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.util.ModuleUtil;
import neatlogic.framework.dependency.constvalue.FrameworkFromType;
@@ -44,7 +46,7 @@ import javax.annotation.Resource;
import java.util.*;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicyGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyHandlerListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyHandlerListApi.java
index 42bbfd88828cceae86bc00a5a1497539bd34467c..b533264f6cb1fa8efd568e0f9921dd8860f3cf75 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyHandlerListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyHandlerListApi.java
@@ -18,8 +18,10 @@ package neatlogic.module.tenant.api.notify;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
+import neatlogic.framework.auth.core.AuthAction;
import neatlogic.framework.auth.core.AuthActionChecker;
import neatlogic.framework.auth.label.NOTIFY_JOB_MODIFY;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.dto.module.ModuleGroupVo;
import neatlogic.framework.exception.type.PermissionDeniedException;
@@ -44,7 +46,7 @@ import java.util.Objects;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicyHandlerListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyParamListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyParamListApi.java
index 798324670526f86593b2cf8f73fb771eb775378f..df94a40b82b8470b88be80aca1ea700894fd1459 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyParamListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyParamListApi.java
@@ -21,6 +21,7 @@ import java.util.Comparator;
import java.util.List;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -47,7 +48,7 @@ import neatlogic.framework.notify.exception.NotifyPolicyHandlerNotFoundException
import neatlogic.framework.notify.exception.NotifyPolicyNotFoundException;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicyParamListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyParamTypeListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyParamTypeListApi.java
index 13a538fefb036866a240d2bd323ac21ef98b8ae4..3d4168d136cf4d6ad0e7cd11d009ae3cda01b07e 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyParamTypeListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyParamTypeListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@@ -30,7 +31,7 @@ import neatlogic.framework.notify.core.INotifyPolicyHandler;
import neatlogic.framework.notify.core.NotifyPolicyHandlerFactory;
import neatlogic.framework.notify.exception.NotifyPolicyHandlerNotFoundException;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicyParamTypeListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySearchApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySearchApi.java
index a15dc5e967a11024a2112f16b6c45292941f1357..a6020d900b9baa79e108f035c317cc203958cf4d 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySearchApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.notify;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -36,7 +38,7 @@ import org.springframework.stereotype.Service;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicySearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySearchForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySearchForSelectApi.java
index c876fae1e7f45e5d050c20045ae34463c2c56e81..14d9133ec360dec14361069dae021bd6f3c23a9b 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySearchForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySearchForSelectApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.common.util.PageUtil;
@@ -33,7 +34,7 @@ import org.springframework.stereotype.Service;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicySearchForSelectApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySystemParamList.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySystemParamList.java
index f5c799bd9a9507594f49783a91aa5bc3ff07d589..09df29671dec043f416905b48c0f49c60ba739fe 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySystemParamList.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicySystemParamList.java
@@ -1,6 +1,8 @@
package neatlogic.module.tenant.api.notify;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.crossover.CrossoverServiceFactory;
import neatlogic.framework.dto.ConditionParamVo;
@@ -25,6 +27,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicySystemParamList extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTemplateGetApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTemplateGetApi.java
index 2669303ec03958dad80a039d175db5829ac5b78f..5915e47a3969af71b8ca432a92acb814d467ee90 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTemplateGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTemplateGetApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.OperationType;
@@ -41,7 +42,7 @@ import neatlogic.framework.restful.annotation.Param;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicyTemplateGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTemplateListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTemplateListApi.java
index 36cc6e80444de981f38616c6ba91bed2fa72f316..5c37f3d9ba517975cff2689525adda1a93422606 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTemplateListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTemplateListApi.java
@@ -19,6 +19,7 @@ import java.util.ArrayList;
import java.util.List;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -45,7 +46,7 @@ import neatlogic.framework.notify.exception.NotifyHandlerNotFoundException;
import neatlogic.framework.notify.exception.NotifyPolicyNotFoundException;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicyTemplateListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTriggerConfigListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTriggerConfigListApi.java
index 93f6e08643e4fee2167efc32d8b7f620ca75988e..f377602fb47959c92c471eaa7520c5f1c3d6d693 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTriggerConfigListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTriggerConfigListApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.notify;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.exception.type.ParamIrregularException;
import neatlogic.framework.notify.core.INotifyPolicyHandler;
@@ -38,7 +40,7 @@ import java.util.List;
import java.util.Objects;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicyTriggerConfigListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTriggerListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTriggerListApi.java
index 5cc711a872b12b6c60efac676be38dca1c459ff9..47dc145fdf54707bc14736e2adf6a61789718cf5 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTriggerListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyPolicyTriggerListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -44,7 +46,7 @@ import org.springframework.stereotype.Service;
import java.util.*;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyPolicyTriggerListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/NotifyTriggerListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/NotifyTriggerListApi.java
index 780a4beef7b20042cb210a6dea435c43d89d891b..61ea999df87621709fb37f9133ab791908bd8211 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/NotifyTriggerListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/NotifyTriggerListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@@ -31,7 +32,7 @@ import neatlogic.framework.notify.core.NotifyPolicyHandlerFactory;
import neatlogic.framework.notify.exception.NotifyPolicyHandlerNotFoundException;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyTriggerListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/UpdateIsDefaultNotifyPolicyApi.java b/src/main/java/neatlogic/module/tenant/api/notify/UpdateIsDefaultNotifyPolicyApi.java
index 93f7d78673a47f2d4c98daed13b898462f75fa36..1102a2fcbdbfb3842a2bfa5b0159a343a5ca58c0 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/UpdateIsDefaultNotifyPolicyApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/UpdateIsDefaultNotifyPolicyApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.notify.core.INotifyPolicyHandler;
import neatlogic.framework.notify.core.NotifyPolicyHandlerFactory;
@@ -34,6 +36,7 @@ import java.util.Objects;
@Service
@Transactional
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
public class UpdateIsDefaultNotifyPolicyApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerDetailApi.java b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerDetailApi.java
index 2e136889135f5afac9aab9fb3248dc290543c877..d8ab9bde854331334ad23a2f3a07cadae3186e14 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerDetailApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerDetailApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify.job;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dto.ConditionParamVo;
import neatlogic.framework.notify.core.INotifyContentHandler;
@@ -31,7 +32,7 @@ import org.springframework.stereotype.Service;
import java.util.LinkedHashMap;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyContentHandlerDetailApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerListApi.java
index dad5a60bbb81a37982910e77e972bac54cf014f8..32eb11f961ba130b8148b1ff9e898d9ed75bdfe9 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify.job;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.notify.core.NotifyContentHandlerFactory;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -25,7 +26,7 @@ import com.alibaba.fastjson.JSONObject;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyContentHandlerListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerMessageAttrListApi.java b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerMessageAttrListApi.java
index d8f2fb079a8f884245705f0d2819f809a5260058..5575fedcc3a050f225bb160c1e4c7846f0444bc2 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerMessageAttrListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerMessageAttrListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify.job;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.notify.core.INotifyContentHandler;
@@ -30,7 +31,7 @@ import com.alibaba.fastjson.JSONObject;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyContentHandlerMessageAttrListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerPreviewApi.java b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerPreviewApi.java
index 28aa4c72d7675b4aee2992ff85599a85259ec60c..b184365e29e2abe67f1e52fb09a4d6ad5ae2bafb 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerPreviewApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyContentHandlerPreviewApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify.job;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.notify.core.INotifyContentHandler;
import neatlogic.framework.notify.core.INotifyHandler;
@@ -30,7 +31,7 @@ import com.alibaba.fastjson.JSONObject;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyContentHandlerPreviewApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobAuditSearchApi.java b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobAuditSearchApi.java
index 8def4d2d64df88d5c98b6f0b46dcf54e7c6dbdd7..2d3b21a7d5ab8b08fc71ebbc8c9ad19e326e4b5d 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobAuditSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobAuditSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify.job;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.util.PageUtil;
import neatlogic.framework.dao.mapper.RoleMapper;
@@ -51,7 +53,7 @@ import java.util.List;
import java.util.Map;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyJobAuditSearchApi extends PrivateApiComponentBase {
@Autowired
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobGetApi.java b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobGetApi.java
index bafb56b39e1084c0d13fa42c8e12c71ccb98e8cb..51ab00641ca9d11735f7c4c7dd68f913cde58b51 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobGetApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify.job;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.notify.dao.mapper.NotifyJobMapper;
import neatlogic.framework.notify.dto.job.NotifyJobVo;
@@ -28,7 +29,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyJobGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobSearchApi.java b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobSearchApi.java
index f80a2bd968a4712573aebc65a83e7819ccefaca2..51bb538609ac0ba48a411af8b9d8220f9ab3dd4c 100644
--- a/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/notify/job/NotifyJobSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.notify.job;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BaseEditorVo;
import neatlogic.framework.common.util.PageUtil;
@@ -51,7 +53,7 @@ import java.util.List;
import java.util.Map;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class NotifyJobSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/region/SearchRegionApi.java b/src/main/java/neatlogic/module/tenant/api/region/SearchRegionApi.java
index 009a77be9357863f1618a7ba44a8c4ae42fcd992..10c8cb983bdbe751f02fa24c833143dd056a0caf 100644
--- a/src/main/java/neatlogic/module/tenant/api/region/SearchRegionApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/region/SearchRegionApi.java
@@ -20,6 +20,8 @@ package neatlogic.module.tenant.api.region;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.TeamMapper;
import neatlogic.framework.dao.mapper.region.RegionMapper;
@@ -40,6 +42,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SearchRegionApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/region/SearchRegionTreeApi.java b/src/main/java/neatlogic/module/tenant/api/region/SearchRegionTreeApi.java
index e05ad01064d33e8e9e4680494611b7c162c14f7e..7a877147fc113687323bb7b60a9b5a108eea13ed 100644
--- a/src/main/java/neatlogic/module/tenant/api/region/SearchRegionTreeApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/region/SearchRegionTreeApi.java
@@ -18,6 +18,8 @@
package neatlogic.module.tenant.api.region;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.region.RegionMapper;
import neatlogic.framework.dto.region.RegionVo;
@@ -34,6 +36,7 @@ import java.util.List;
import java.util.Map;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SearchRegionTreeApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/role/RoleAuthSearchApi.java b/src/main/java/neatlogic/module/tenant/api/role/RoleAuthSearchApi.java
index e9ac318c79cfda610d939f40c8762e539b499177..aa48dee07937f03e1c263d71931170dd67f8dbda 100644
--- a/src/main/java/neatlogic/module/tenant/api/role/RoleAuthSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/role/RoleAuthSearchApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.role;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.RoleMapper;
import neatlogic.framework.dto.RoleAuthVo;
@@ -38,7 +39,7 @@ import java.util.Map;
import java.util.Set;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RoleAuthSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/role/RoleCountApi.java b/src/main/java/neatlogic/module/tenant/api/role/RoleCountApi.java
index ad39c15f800b6fdb526ba38f3b6eb7cdf859bcd0..811967be07760648057cd7ffeffba9352df06019 100644
--- a/src/main/java/neatlogic/module/tenant/api/role/RoleCountApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/role/RoleCountApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.role;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.RoleMapper;
import neatlogic.framework.dto.RoleVo;
@@ -31,7 +32,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RoleCountApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/role/RoleGetApi.java b/src/main/java/neatlogic/module/tenant/api/role/RoleGetApi.java
index aa6aa113757f5fa9d7d0816aab8cf3af60b284fa..17c98736c8d551dc7e74934be931aa82dadc5b92 100644
--- a/src/main/java/neatlogic/module/tenant/api/role/RoleGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/role/RoleGetApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.role;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@@ -31,7 +32,7 @@ import neatlogic.framework.dto.RoleVo;
import neatlogic.framework.exception.role.RoleNotFoundException;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RoleGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/role/RoleGetListApi.java b/src/main/java/neatlogic/module/tenant/api/role/RoleGetListApi.java
index 844edb6a8f08aee0c9b977211de2075344850b69..1eb340d7cb5177a486c2e08c06d0a33d9a2766d2 100644
--- a/src/main/java/neatlogic/module/tenant/api/role/RoleGetListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/role/RoleGetListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.role;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.RoleMapper;
import neatlogic.framework.dto.RoleVo;
@@ -40,7 +41,7 @@ import java.util.List;
* @create: 2020-03-20 10:35
**/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RoleGetListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/role/RoleGetWithCacheControlApi.java b/src/main/java/neatlogic/module/tenant/api/role/RoleGetWithCacheControlApi.java
index 0377048a9bd057259dd3a84029a3efc132aa59c2..fafbf0dc81143faa6fc291c509bae7db6d87afbe 100644
--- a/src/main/java/neatlogic/module/tenant/api/role/RoleGetWithCacheControlApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/role/RoleGetWithCacheControlApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.role;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.CacheControlType;
import neatlogic.framework.dao.mapper.RoleMapper;
@@ -29,7 +30,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RoleGetWithCacheControlApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/role/RoleSearchApi.java b/src/main/java/neatlogic/module/tenant/api/role/RoleSearchApi.java
index bd7668f2d21891c8813caf6df7a43c123ca7119b..2f7ebfea88a4706117b712ee89a534d619c5bc52 100644
--- a/src/main/java/neatlogic/module/tenant/api/role/RoleSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/role/RoleSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.role;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.config.Config;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.util.PageUtil;
@@ -33,7 +35,7 @@ import javax.annotation.Resource;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RoleSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/role/RoleSearchForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/role/RoleSearchForSelectApi.java
index e452a6efa4e287bebc724d8f2ce4c36d2a4cbbc6..79f955189fc0ac03d654779637af50fb633935e4 100644
--- a/src/main/java/neatlogic/module/tenant/api/role/RoleSearchForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/role/RoleSearchForSelectApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.role;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.common.util.PageUtil;
@@ -30,7 +31,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RoleSearchForSelectApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/role/RoleTeamListApi.java b/src/main/java/neatlogic/module/tenant/api/role/RoleTeamListApi.java
index 57d00e46bbf6e17dcbe5fc5ff175c1d1e08fb2e1..9753cc392c1eaa06ec33258903ea85f369aa0c8d 100644
--- a/src/main/java/neatlogic/module/tenant/api/role/RoleTeamListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/role/RoleTeamListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.role;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.RoleMapper;
import neatlogic.framework.dao.mapper.TeamMapper;
@@ -36,7 +38,7 @@ import java.util.List;
import java.util.Map;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RoleTeamListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/role/RoleUserListApi.java b/src/main/java/neatlogic/module/tenant/api/role/RoleUserListApi.java
index 71613ada5fdb3457837044702d5c13d8e80c27a4..5f04b0252f28cafb1d3ceda84b80752aa04bc5c6 100644
--- a/src/main/java/neatlogic/module/tenant/api/role/RoleUserListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/role/RoleUserListApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.role;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.RoleMapper;
import neatlogic.framework.dao.mapper.UserMapper;
@@ -32,7 +33,7 @@ import org.springframework.stereotype.Service;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RoleUserListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/runner/CheckRunnerStatusApi.java b/src/main/java/neatlogic/module/tenant/api/runner/CheckRunnerStatusApi.java
index a53d3dd93b3e0c1eed8fc7011cdd006aaf0c75bf..c26adfa0c1c793fbbf6ba0e7a3d67cf01e433a4c 100644
--- a/src/main/java/neatlogic/module/tenant/api/runner/CheckRunnerStatusApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/runner/CheckRunnerStatusApi.java
@@ -18,6 +18,8 @@
package neatlogic.module.tenant.api.runner;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.Input;
import neatlogic.framework.restful.annotation.Param;
@@ -28,6 +30,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
+@AuthAction(action = NoAuth.class)
public class CheckRunnerStatusApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/runner/PushRunnerStatusApi.java b/src/main/java/neatlogic/module/tenant/api/runner/PushRunnerStatusApi.java
index 468c14f26111e1ce6a2531dd07f2fa52eddc32b7..8a6bc8f96cab94738353ec957ed758df7ba5eeea 100644
--- a/src/main/java/neatlogic/module/tenant/api/runner/PushRunnerStatusApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/runner/PushRunnerStatusApi.java
@@ -19,6 +19,8 @@ package neatlogic.module.tenant.api.runner;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.RequestContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.util.IpUtil;
import neatlogic.framework.dao.mapper.runner.RunnerMapper;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@@ -27,6 +29,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
+@AuthAction(action = NoAuth.class)
public class PushRunnerStatusApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/runner/RunnerGroupSearchApi.java b/src/main/java/neatlogic/module/tenant/api/runner/RunnerGroupSearchApi.java
index 50c928965f165498f4f32e69d62bd96b55d2c12c..262d19531acbd3423a53cf8953f9a1576aaacb41 100644
--- a/src/main/java/neatlogic/module/tenant/api/runner/RunnerGroupSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/runner/RunnerGroupSearchApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.runner;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.config.Config;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.runner.RunnerMapper;
@@ -32,6 +34,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RunnerGroupSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/runner/RunnerRegisterApi.java b/src/main/java/neatlogic/module/tenant/api/runner/RunnerRegisterApi.java
index 628fbb4945b6772d2daaab33bcd511d4020eb761..60741f46493585ff8fd584240db77378806a8bf1 100644
--- a/src/main/java/neatlogic/module/tenant/api/runner/RunnerRegisterApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/runner/RunnerRegisterApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.runner;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.RequestContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.RunnerStatus;
import neatlogic.framework.common.util.IpUtil;
@@ -35,6 +37,7 @@ import javax.annotation.Resource;
@Service
@Transactional
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.OPERATE)
public class RunnerRegisterApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/runner/RunnerSearchApi.java b/src/main/java/neatlogic/module/tenant/api/runner/RunnerSearchApi.java
index dcea1cbd3735128f49a53c6ad209a37f99662bbb..5c91b0f1d07aba4d4ed8bbdcaa633ca583161b8a 100644
--- a/src/main/java/neatlogic/module/tenant/api/runner/RunnerSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/runner/RunnerSearchApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.runner;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.runner.RunnerMapper;
import neatlogic.framework.dto.runner.RunnerVo;
@@ -30,6 +32,7 @@ import javax.annotation.Resource;
@Service
//@AuthAction(action = RUNNER_MODIFY.class)
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class RunnerSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/scheduler/JobAuditSearchApi.java b/src/main/java/neatlogic/module/tenant/api/scheduler/JobAuditSearchApi.java
index 57555913b56c32299dab3b12b5d062cb3fbabda9..085d474fa0d2c9bb116ce17a489c4fc13b1db92d 100644
--- a/src/main/java/neatlogic/module/tenant/api/scheduler/JobAuditSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/scheduler/JobAuditSearchApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.scheduler;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.util.PageUtil;
import neatlogic.framework.restful.annotation.*;
@@ -31,6 +33,7 @@ import java.util.List;
@Service
@Transactional
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class JobAuditSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/systemnotice/PopUpSystemNoticeGetApi.java b/src/main/java/neatlogic/module/tenant/api/systemnotice/PopUpSystemNoticeGetApi.java
index e792f5b598c6fc9042d539b0641fd45144a67d7f..b93a3565ae316012e3c1e1cc6971794e11233268 100644
--- a/src/main/java/neatlogic/module/tenant/api/systemnotice/PopUpSystemNoticeGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/systemnotice/PopUpSystemNoticeGetApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.systemnotice;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -29,7 +30,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.OPERATE)
public class PopUpSystemNoticeGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeGetApi.java b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeGetApi.java
index c316d8256758ac67bf102a87cee9da57e66a459c..720a1705a25c477d20fa6640ee1e4635f2b45da2 100644
--- a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeGetApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.systemnotice;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -29,7 +30,7 @@ import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
@Transactional
public class SystemNoticeGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeHistoryListApi.java b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeHistoryListApi.java
index cd30f715f17b8744f2bdf6e2ea19eda199b09ecc..10a7e5b2b333f4c273b8fdb5a35361575d163c0e 100644
--- a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeHistoryListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeHistoryListApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.systemnotice;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -39,7 +40,7 @@ import java.util.Date;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SystemNoticeHistoryListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticePullApi.java b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticePullApi.java
index 419f4629600eba259630776ec4272a62862772a3..9dd8a3b401d578fe4cfe433e87a69c07a6d832b3 100644
--- a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticePullApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticePullApi.java
@@ -19,6 +19,8 @@ import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.UserType;
import neatlogic.framework.common.dto.BasePageVo;
@@ -39,7 +41,7 @@ import java.util.List;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.OPERATE)
public class SystemNoticePullApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeReadStatusUpdateApi.java b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeReadStatusUpdateApi.java
index f9265072decc9e71a134eadfb78f4db5df8c8172..0203f787db79620cb06547075f3d2a1545598b4e 100644
--- a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeReadStatusUpdateApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeReadStatusUpdateApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.systemnotice;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -38,7 +39,7 @@ import java.util.List;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
public class SystemNoticeReadStatusUpdateApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeSearchApi.java b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeSearchApi.java
index f8ea536129b177bd1b73b06c35818b5d6bbc3334..7fcad318c300afc9a26e3545895855981692a1d2 100644
--- a/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/systemnotice/SystemNoticeSearchApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.systemnotice;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.GroupSearch;
import neatlogic.framework.common.constvalue.UserType;
@@ -45,7 +46,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class SystemNoticeSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/tag/TagDeleteApi.java b/src/main/java/neatlogic/module/tenant/api/tag/TagDeleteApi.java
index e7bb7ec1a5c957bc6ef9789a7e72bf39e0ab6428..dfbfe48a72bfe3adbf9f7aecca2008dd99ab97ff 100644
--- a/src/main/java/neatlogic/module/tenant/api/tag/TagDeleteApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/tag/TagDeleteApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.tag;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dto.TagVo;
import neatlogic.framework.restful.annotation.Description;
@@ -32,7 +33,7 @@ import org.springframework.stereotype.Service;
@Deprecated
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.DELETE)
public class TagDeleteApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/tag/TagSaveApi.java b/src/main/java/neatlogic/module/tenant/api/tag/TagSaveApi.java
index b3d56fd2e4d14886ec74a54ec980d6f88e420023..3b246df317b727e78ee5d1b03ff9b8e1a4c237a3 100644
--- a/src/main/java/neatlogic/module/tenant/api/tag/TagSaveApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/tag/TagSaveApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.tag;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dto.TagVo;
import neatlogic.framework.restful.annotation.Description;
@@ -31,7 +32,7 @@ import org.springframework.stereotype.Service;
@Deprecated
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.CREATE)
public class TagSaveApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/tag/TagSearchApi.java b/src/main/java/neatlogic/module/tenant/api/tag/TagSearchApi.java
index d5a7eea67be694868b5bfb6e8aac9e1c72031fa6..50ec2cf25554d74082d933a45ab1bfe4e7c6487e 100644
--- a/src/main/java/neatlogic/module/tenant/api/tag/TagSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/tag/TagSearchApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.tag;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dto.TagVo;
import neatlogic.framework.restful.annotation.*;
@@ -28,7 +30,7 @@ import javax.annotation.Resource;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TagSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamCountApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamCountApi.java
index 85e2a133c035a142e77fe7d2bed979bc7fef09f0..9cf43208c276d4051998ac41015d1afe9f548547 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamCountApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamCountApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.team;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.TeamMapper;
import neatlogic.framework.dto.TeamVo;
@@ -31,7 +32,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamCountApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamGetApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamGetApi.java
index 6d7d02ed15f871e02b9da529fd8e51086e6be0fd..ee320bc1af253e226ae5c6986a1d8f9d2c2b0276 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamGetApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.team;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.TeamMapper;
import neatlogic.framework.dto.TeamVo;
@@ -31,7 +33,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamGetListApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamGetListApi.java
index e95e4e5973765980abadb0e7f6611c4f1193edcd..8d81f85915c7bef46dcd5130cd4078d4bdc6a72b 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamGetListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamGetListApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.team;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.TeamMapper;
import neatlogic.framework.dto.TeamVo;
@@ -32,6 +34,7 @@ import java.util.Comparator;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamGetListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamGetWithCacheControlApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamGetWithCacheControlApi.java
index b3568245e5a976df1ebfd6854f377c52029aeff7..f9ed18a5475c9ed6b8cc6c4d31fc0a829da37133 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamGetWithCacheControlApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamGetWithCacheControlApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.team;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.CacheControlType;
import neatlogic.framework.dao.mapper.TeamMapper;
@@ -29,7 +30,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamGetWithCacheControlApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamLevelListApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamLevelListApi.java
index 2dac12e5f99e584b476cd2eda29ad81176842a42..e97471e3a67c5b51ccc9fa815fbca0398268455c 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamLevelListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamLevelListApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.team;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.TeamLevel;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.restful.annotation.Description;
@@ -30,6 +32,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamLevelListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamListApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamListApi.java
index eb8b3a2813cb72fe4c8015eb5e4d8aaf6c7056d8..9b2ec6c1df19e4bd8e29b3cecf00fb069e563cc2 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamListApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.team;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.util.PageUtil;
import neatlogic.framework.dao.mapper.TeamMapper;
@@ -32,6 +34,7 @@ import org.springframework.stereotype.Service;
@Service
@Deprecated
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamListApi extends PrivateApiComponentBase {
@Autowired
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamListForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamListForSelectApi.java
index 5f04a652bc371039f0be729784562e21c5f1b610..e6a0bc78848aa8751e12fff6bf82528c038f98f3 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamListForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamListForSelectApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.team;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -33,6 +35,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamListForSelectApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamSearchApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamSearchApi.java
index 704d9ebcf6bb688122e20fd9dd69bbe97cdac113..e92d9df7e70fe726bbf22daf87be45f4270812b2 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamSearchApi.java
@@ -18,6 +18,7 @@ package neatlogic.module.tenant.api.team;
import java.util.List;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@@ -36,7 +37,7 @@ import neatlogic.framework.dao.mapper.TeamMapper;
import neatlogic.framework.dto.TeamVo;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamSearchForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamSearchForSelectApi.java
index eb91eb61abefb18366e6b54c920a15c9d705c8a7..770f6d3bdd466a64f2e3858c4b06ddc579a7c9e7 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamSearchForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamSearchForSelectApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.team;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.GroupSearch;
import neatlogic.framework.common.dto.ValueTextVo;
@@ -38,7 +40,7 @@ import java.util.Map;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamSearchForSelectApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamTreeApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamTreeApi.java
index 17b833ab5b97ceccfb720b8bc07edd39d40cdff5..cf41f2d71d863b0878dfed604898e63b5079a9b6 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamTreeApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamTreeApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.team;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.dao.mapper.RoleMapper;
@@ -37,7 +39,7 @@ import java.util.Map;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamTreeApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamTreeSearchApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamTreeSearchApi.java
index b7a7b6824707762e9e856e1067fce9823c1222ca..96531e844ccd940f9544481872e6b33ce49964d2 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamTreeSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamTreeSearchApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.team;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.TeamMapper;
import neatlogic.framework.dto.TeamVo;
@@ -42,7 +43,7 @@ import org.springframework.stereotype.Service;
* @create: 2020-03-05 18:49
**/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamTreeSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/team/TeamUserListApi.java b/src/main/java/neatlogic/module/tenant/api/team/TeamUserListApi.java
index ffe36b1362670bce88bff915a13afe51bfa51f41..e99e55b1a4b5a7e4f283e5274927978ce9bacbb5 100644
--- a/src/main/java/neatlogic/module/tenant/api/team/TeamUserListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/team/TeamUserListApi.java
@@ -18,6 +18,7 @@ package neatlogic.module.tenant.api.team;
import java.util.List;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.TeamUserTitle;
import neatlogic.framework.dao.mapper.UserMapper;
import neatlogic.framework.dto.UserVo;
@@ -36,7 +37,7 @@ import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.TeamMapper;
import neatlogic.framework.exception.team.TeamNotFoundException;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class TeamUserListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/test/TestApi.java b/src/main/java/neatlogic/module/tenant/api/test/TestApi.java
index b2a20ddf806b8c7178bf7e0d47976caaf3693b51..8de1dbfff6d08bcf3dad17fe49ccde8bd55bdff2 100644
--- a/src/main/java/neatlogic/module/tenant/api/test/TestApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/test/TestApi.java
@@ -16,11 +16,14 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.test;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
import org.springframework.stereotype.Component;
@Component
+@AuthAction(action = NoAuth.class)
//@Transactional
public class TestApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/ClearUserSessionCacheApi.java b/src/main/java/neatlogic/module/tenant/api/user/ClearUserSessionCacheApi.java
index e17f0d3e21e9b09de3a7172a43c617e4d168f558..a82f8f3ff5102a7f8723f8565cd2ce169dea8142 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/ClearUserSessionCacheApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/ClearUserSessionCacheApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.cache.UserSessionCache;
import neatlogic.framework.dao.mapper.UserMapper;
@@ -35,6 +37,7 @@ import javax.annotation.Resource;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class ClearUserSessionCacheApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/user/CurrentUserGetApi.java b/src/main/java/neatlogic/module/tenant/api/user/CurrentUserGetApi.java
index efe9ce5f2c1c0a943461e5111b0dec3b8298504e..80793210d1c3aa75f09d9eabbc49629e142edb98 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/CurrentUserGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/CurrentUserGetApi.java
@@ -18,9 +18,11 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
import neatlogic.framework.auth.core.AuthActionChecker;
import neatlogic.framework.auth.core.AuthBase;
import neatlogic.framework.auth.core.AuthFactory;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.GroupSearch;
import neatlogic.framework.dao.mapper.UserMapper;
import neatlogic.framework.dto.AuthenticationInfoVo;
@@ -45,6 +47,7 @@ import java.util.List;
import java.util.stream.Collectors;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class CurrentUserGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/CurrentUserSaveApi.java b/src/main/java/neatlogic/module/tenant/api/user/CurrentUserSaveApi.java
index 0dbc16dfe93bedca2e2818aa5423cd842e3e40a6..d7aa93b2e623c2ed86da7cb17e2cdc12c3d54367 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/CurrentUserSaveApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/CurrentUserSaveApi.java
@@ -17,6 +17,7 @@ package neatlogic.module.tenant.api.user;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.TeamMapper;
import neatlogic.framework.dao.mapper.UserMapper;
@@ -31,7 +32,7 @@ import org.springframework.transaction.annotation.Transactional;
@Service
@Transactional
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
public class CurrentUserSaveApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/DeleteUserDataApi.java b/src/main/java/neatlogic/module/tenant/api/user/DeleteUserDataApi.java
index 56179cf4725042699c7f24667536151de1805441..8105afbb6ff4ed71b0e3929042c3df7aba435aa5 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/DeleteUserDataApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/DeleteUserDataApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.UserMapper;
import neatlogic.framework.restful.annotation.*;
@@ -26,7 +28,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.DELETE)
public class DeleteUserDataApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/DeleteUserSessionApi.java b/src/main/java/neatlogic/module/tenant/api/user/DeleteUserSessionApi.java
index 284cb3f47a9ebd22cf8f0e19129178ed8ef022fa..8a5e2a5ea3f0ea6d63351fc4e44f17af4341c5cd 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/DeleteUserSessionApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/DeleteUserSessionApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.UserSessionMapper;
import neatlogic.framework.restful.annotation.*;
@@ -29,6 +31,7 @@ import javax.annotation.Resource;
import java.util.List;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class DeleteUserSessionApi extends PrivateApiComponentBase {
@Resource
diff --git a/src/main/java/neatlogic/module/tenant/api/user/GetCurrentUserTokenApi.java b/src/main/java/neatlogic/module/tenant/api/user/GetCurrentUserTokenApi.java
index a63b48bf0452aa820814bba0c7a38f8f384a2811..6309f65ea9309e230b6b6c3e8d29f79f3af50a2e 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/GetCurrentUserTokenApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/GetCurrentUserTokenApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@@ -26,6 +28,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetCurrentUserTokenApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/GetUserCountBySelectedUserAndTeamApi.java b/src/main/java/neatlogic/module/tenant/api/user/GetUserCountBySelectedUserAndTeamApi.java
index fc968ec525226434ecb475826f56878a5cc6d283..03896fd6d6b17d9ada9557d9107f7ed1ddb175ef 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/GetUserCountBySelectedUserAndTeamApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/GetUserCountBySelectedUserAndTeamApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.user;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -29,7 +31,7 @@ import java.util.List;
import java.util.Set;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetUserCountBySelectedUserAndTeamApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/GetUserDataApi.java b/src/main/java/neatlogic/module/tenant/api/user/GetUserDataApi.java
index 605a757e39df029b78491703376b89bed90cc895..6133c595d748c3940d0dbec55b6a50ff0ed07b3d 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/GetUserDataApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/GetUserDataApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.UserMapper;
import neatlogic.framework.dto.UserDataVo;
@@ -27,7 +29,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class GetUserDataApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/ResetCurrentUserTokenApi.java b/src/main/java/neatlogic/module/tenant/api/user/ResetCurrentUserTokenApi.java
index be373b8b86e1ec5702c88e46f7c3279845585e65..f8d8305cb4bc2830f1a7730a34eadd37ca7e3dba 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/ResetCurrentUserTokenApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/ResetCurrentUserTokenApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.user;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.dao.mapper.UserMapper;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.OperationType;
@@ -31,6 +33,7 @@ import javax.annotation.Resource;
import java.util.UUID;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.OPERATE)
public class ResetCurrentUserTokenApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserAuthSearchApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserAuthSearchApi.java
index 678eebfd4dfcf45eda2dad418a13cea959502bd8..7e9768bb1b368c58695fcdb9750b1f8c349b82e2 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserAuthSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserAuthSearchApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.RoleMapper;
import neatlogic.framework.dao.mapper.TeamMapper;
@@ -39,7 +41,7 @@ import java.util.Map;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserAuthSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserDataSaveApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserDataSaveApi.java
index 5c41cdb2eea5c7a63de733f55148ecc5a08e6499..ec26888c4219ed0b83624bbe12993a21f3eef52a 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserDataSaveApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserDataSaveApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.UserMapper;
import neatlogic.framework.dto.UserDataVo;
@@ -27,7 +29,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.CREATE)
public class UserDataSaveApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserGetApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserGetApi.java
index d097b529cf5206366cd6a7362b2240d4886319a5..5858093ce23600e54e7f5fececbeef28a081741e 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserGetApi.java
@@ -18,10 +18,12 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
import neatlogic.framework.auth.core.AuthActionChecker;
import neatlogic.framework.auth.core.AuthBase;
import neatlogic.framework.auth.core.AuthFactory;
import neatlogic.framework.auth.init.MaintenanceMode;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.config.Config;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.GroupSearch;
@@ -45,7 +47,7 @@ import java.util.*;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserGetForEditApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserGetForEditApi.java
index 26dc50c9e6221e0fddaa5771e0357df9d311d4d8..ea9c24854d0029d5c2a1594af60487a299a2942e 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserGetForEditApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserGetForEditApi.java
@@ -16,6 +16,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.GroupSearch;
import neatlogic.framework.dao.mapper.RoleMapper;
@@ -38,7 +40,7 @@ import java.util.List;
import java.util.Map;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserGetForEditApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserGetListApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserGetListApi.java
index 3d9ceaa3596b041db9062b5cfc4b3b7128e15d6b..9affb98139ca5423f47018d1158bd003066364d1 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserGetListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserGetListApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.UserMapper;
import neatlogic.framework.dto.UserVo;
@@ -39,7 +41,7 @@ import java.util.List;
* @create: 2020-03-06 11:49
**/
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserGetListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserGetWithCacheControlApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserGetWithCacheControlApi.java
index 5b0b8402db6103a7774a11ded6702f9543ba3387..49e993ac57bec9f29261691dcc56886c71c23582 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserGetWithCacheControlApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserGetWithCacheControlApi.java
@@ -16,7 +16,9 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.user;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
import neatlogic.framework.auth.init.MaintenanceMode;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.config.Config;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.CacheControlType;
@@ -34,7 +36,7 @@ import javax.annotation.Resource;
import java.util.Objects;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserGetWithCacheControlApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserListApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserListApi.java
index 60b28f2e80c8e0806073e720a080b6f1e1d5cdd1..e944d320a5ad3c1769c50368f747a7f759b4ecc0 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserListApi.java
@@ -19,6 +19,7 @@ import java.util.ArrayList;
import java.util.List;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase;
@@ -34,7 +35,7 @@ import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.UserMapper;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserPasswordUpdateApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserPasswordUpdateApi.java
index d967ab386316bdb1b49f7e036ba9ae84f7185160..a48211c7ec701c9e69cef2bb04e24fea301a6f80 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserPasswordUpdateApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserPasswordUpdateApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dao.mapper.UserMapper;
import neatlogic.framework.dto.UserVo;
@@ -32,6 +34,7 @@ import java.util.List;
@Service
@Transactional
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
public class UserPasswordUpdateApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserProfileListApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserProfileListApi.java
index ee89035008e1b9d068b2a4ddc166b345321eefae..e777454be1ef0bb22f5082ed6dfcf0e93f6940bd 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserProfileListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserProfileListApi.java
@@ -19,6 +19,8 @@ import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.TenantContext;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.IUserProfile;
import neatlogic.framework.common.constvalue.IUserProfileOperate;
@@ -38,7 +40,7 @@ import org.springframework.stereotype.Service;
import java.util.*;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserProfileListApi extends PrivateApiComponentBase {
@Autowired
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserProfileSaveApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserProfileSaveApi.java
index ab43f10400a03ab2332bc88006b7ab47db3091b8..e61d6c8497acdfdf8b44370e2a253e4712c03ef7 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserProfileSaveApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserProfileSaveApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import neatlogic.framework.asynchronization.threadlocal.UserContext;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.constvalue.IUserProfile;
import neatlogic.framework.common.constvalue.IUserProfileOperate;
@@ -40,7 +42,7 @@ import java.util.Objects;
@Service
@Transactional
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.UPDATE)
public class UserProfileSaveApi extends PrivateApiComponentBase {
@Autowired
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserRoleTeamSearchApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserRoleTeamSearchApi.java
index f398b73617e401d62aabcff2e52adaf0429c78f6..86e2b8998652ca7a5fd090ff9bb927c95b7fe3cc 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserRoleTeamSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserRoleTeamSearchApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.user;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -28,7 +30,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserRoleTeamSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserSearchApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserSearchApi.java
index e8f491e9e6a4d59908dc656e9848906f15f5a8f7..000f82246d40284d8b3008667b2b54f99b20484a 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserSearchApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.dao.mapper.UserMapper;
@@ -34,7 +36,7 @@ import java.util.ArrayList;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserSearchForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserSearchForSelectApi.java
index 1fbae9ab6537979096f9d8de712d11e1db30dd15..dbe3debfbcb1860db8aae714b42474fb31a7e4ae 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserSearchForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserSearchForSelectApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.user;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.dao.mapper.UserMapper;
@@ -35,6 +37,7 @@ import java.util.List;
import java.util.Objects;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserSearchForSelectApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/user/UserTitleListApi.java b/src/main/java/neatlogic/module/tenant/api/user/UserTitleListApi.java
index cf2782f42434863c1b565ccc7ff796804562a75d..1d86b336d50200758c032d6012b3893c3ee8b6a1 100644
--- a/src/main/java/neatlogic/module/tenant/api/user/UserTitleListApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/user/UserTitleListApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.user;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -30,7 +32,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class UserTitleListApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/util/JavascriptTestApi.java b/src/main/java/neatlogic/module/tenant/api/util/JavascriptTestApi.java
index 95ebe4c767de0c193e83f0eb73edf7cf841f35d1..da95e2da2a14e7a6e658a7d4e3478bb03b9ee549 100644
--- a/src/main/java/neatlogic/module/tenant/api/util/JavascriptTestApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/util/JavascriptTestApi.java
@@ -18,6 +18,8 @@
package neatlogic.module.tenant.api.util;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -26,6 +28,7 @@ import neatlogic.framework.util.javascript.JavascriptUtil;
import org.springframework.stereotype.Service;
@Service
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class JavascriptTestApi extends PrivateApiComponentBase {
@Override
diff --git a/src/main/java/neatlogic/module/tenant/api/util/ToggleGzipContentApi.java b/src/main/java/neatlogic/module/tenant/api/util/ToggleGzipContentApi.java
index a9fcaa322106e54a41d6ce37376498472eef47d1..05b2a3029c6c29704a9ecf48eca1c1b7fbdd141e 100644
--- a/src/main/java/neatlogic/module/tenant/api/util/ToggleGzipContentApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/util/ToggleGzipContentApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.util;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.Description;
import neatlogic.framework.restful.annotation.Input;
@@ -28,7 +30,7 @@ import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.OPERATE)
public class ToggleGzipContentApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeCalendarGetApi.java b/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeCalendarGetApi.java
index a5eb4f135241dbd7a77041563a5c7fd2702f60cd..2000d7166ff9bb11e39be3a304d171e637888da6 100644
--- a/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeCalendarGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeCalendarGetApi.java
@@ -16,6 +16,7 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.worktime;
import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.restful.annotation.*;
import neatlogic.framework.restful.constvalue.OperationTypeEnum;
@@ -34,7 +35,7 @@ import java.util.Calendar;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class WorktimeCalendarGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeGetApi.java b/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeGetApi.java
index c2903863e389a459d5f3b8daaa5b10e5049485b0..6cdb10cb7bca238d7e5f450e7cf1b90ccc9cfb1e 100644
--- a/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeGetApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeGetApi.java
@@ -15,6 +15,8 @@ along with this program. If not, see .*/
package neatlogic.module.tenant.api.worktime;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.dependency.constvalue.FrameworkFromType;
import neatlogic.framework.dependency.core.DependencyManager;
@@ -30,7 +32,7 @@ import org.springframework.stereotype.Service;
import javax.annotation.Resource;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class WorktimeGetApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeSearchApi.java b/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeSearchApi.java
index 1a81ecad6e7fd71fd5782a512e431c83e10285d3..47b8323149999e20b11454e783641d2a8c4a5986 100644
--- a/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeSearchApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeSearchApi.java
@@ -18,6 +18,8 @@ package neatlogic.module.tenant.api.worktime;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.BasePageVo;
import neatlogic.framework.common.util.PageUtil;
@@ -37,7 +39,7 @@ import java.util.Map.Entry;
import java.util.stream.Collectors;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class WorktimeSearchApi extends PrivateApiComponentBase {
diff --git a/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeSearchForSelectApi.java b/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeSearchForSelectApi.java
index 4fe19e9fd1a1425cb95568fd572a032d97a02188..aecb841f3da88ddc774c07c326cb6330b93b8a27 100644
--- a/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeSearchForSelectApi.java
+++ b/src/main/java/neatlogic/module/tenant/api/worktime/WorktimeSearchForSelectApi.java
@@ -17,6 +17,8 @@ package neatlogic.module.tenant.api.worktime;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
+import neatlogic.framework.auth.core.AuthAction;
+import neatlogic.framework.auth.label.NoAuth;
import neatlogic.framework.common.constvalue.ApiParamType;
import neatlogic.framework.common.dto.ValueTextVo;
import neatlogic.framework.common.util.PageUtil;
@@ -31,7 +33,7 @@ import javax.annotation.Resource;
import java.util.List;
@Service
-
+@AuthAction(action = NoAuth.class)
@OperationType(type = OperationTypeEnum.SEARCH)
public class WorktimeSearchForSelectApi extends PrivateApiComponentBase {