瀏覽代碼

更新接口认证配置

woody 8 月之前
父節點
當前提交
fa8592e72d
共有 28 個文件被更改,包括 1 次插入54 次删除
  1. 1 0
      src/main/java/com/chelvc/cloud/admin/controller/AuthorizeController.java
  2. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/CarouselImagesController.java
  3. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/CategoryController.java
  4. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/CommissionConfigController.java
  5. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/CouponController.java
  6. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/DynamicCommentController.java
  7. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/DynamicContentController.java
  8. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/EmployeeController.java
  9. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/FeedbackController.java
  10. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/FileController.java
  11. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/GoodsController.java
  12. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/HelpCategoryController.java
  13. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/HelpController.java
  14. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/InviteUserController.java
  15. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/LoginController.java
  16. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/MenuController.java
  17. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/MerchantAuthController.java
  18. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/MerchantController.java
  19. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/NoticeController.java
  20. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/OmsOrderReturnApplyController.java
  21. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/OrderController.java
  22. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/ProfitRatioConfigController.java
  23. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/ProfitRatioController.java
  24. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/RankAwardConfigController.java
  25. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/RankAwardRecordController.java
  26. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/ReservationController.java
  27. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/RoleController.java
  28. 0 2
      src/main/java/com/chelvc/cloud/admin/controller/UserController.java

+ 1 - 0
src/main/java/com/chelvc/cloud/admin/controller/AuthorizeController.java

@@ -24,6 +24,7 @@ import org.springframework.web.bind.annotation.RestController;
  */
 @RestController
 @ResponseWrapping
+@Authorize(enabled = false)
 @RequiredArgsConstructor(onConstructor = @__(@Autowired))
 public class AuthorizeController {
     private final AuthorizeClient authorizeClient;

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/CarouselImagesController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.vehicle.client.param.CarouselImagesModifyParam;
 import com.chelvc.cloud.vehicle.client.param.CarouselImagesPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @Date 2023/12/29
  **/
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/CategoryController.java

@@ -11,7 +11,6 @@ import com.chelvc.cloud.vehicle.client.param.CategoryModifyParam;
 import com.chelvc.cloud.vehicle.client.param.CategoryPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -28,7 +27,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author 七仔
  * @Date 2023/4/4
  **/
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/CommissionConfigController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.vehicle.client.param.CommissionConfigModifyParam;
 import com.chelvc.cloud.vehicle.client.param.CommissionConfigPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @Date 2023/12/29
  **/
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/CouponController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.vehicle.client.param.CouponModifyParam;
 import com.chelvc.cloud.vehicle.client.param.CouponPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @Date 2023/8/29
  **/
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/DynamicCommentController.java

@@ -6,7 +6,6 @@ import com.chelvc.cloud.vehicle.client.param.ExamineDynamicParam;
 import com.chelvc.cloud.vehicle.client.param.QueryAdminDynamicParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -22,7 +21,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author: igl
  * @date: 2023/8/17 22:18
  */
-@Authorize
 @Validated
 @RestController
 @RequestMapping("/comment")

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/DynamicContentController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.vehicle.client.param.ExamineDynamicParam;
 import com.chelvc.cloud.vehicle.client.param.QueryAdminDynamicParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author igl
  * @date 2023-02-25
  */
-@Authorize
 @Validated
 @RestController
 @RequestMapping("/content")

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/EmployeeController.java

@@ -12,7 +12,6 @@ import com.chelvc.cloud.user.client.param.EmployeeModifyParam;
 import com.chelvc.cloud.user.client.param.EmployeePagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -29,7 +28,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author Woody
  * @date 2021/10/20
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/FeedbackController.java

@@ -10,7 +10,6 @@ import com.chelvc.cloud.vehicle.client.dto.FeedBackDTO;
 import com.chelvc.cloud.vehicle.client.param.FeedBackPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -24,7 +23,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @date 2023/1/16
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/FileController.java

@@ -6,7 +6,6 @@ import com.chelvc.framework.common.model.Media;
 import com.chelvc.framework.common.util.FileUtils;
 import com.chelvc.framework.common.util.ObjectUtils;
 import com.chelvc.framework.common.util.StringUtils;
-import com.chelvc.framework.security.annotation.Authorize;
 import com.chelvc.framework.upload.UploadHandler;
 import lombok.RequiredArgsConstructor;
 import lombok.extern.slf4j.Slf4j;
@@ -28,7 +27,6 @@ import java.io.InputStream;
  * @date 2023/5/4
  */
 @Slf4j
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/GoodsController.java

@@ -11,7 +11,6 @@ import com.chelvc.cloud.vehicle.client.param.GoodsModifyParam;
 import com.chelvc.cloud.vehicle.client.param.GoodsPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -28,7 +27,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @Date 2023/8/29
  **/
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/HelpCategoryController.java

@@ -10,7 +10,6 @@ import com.chelvc.cloud.vehicle.client.param.HelpCategoryModifyParam;
 import com.chelvc.cloud.vehicle.client.param.HelpCategoryPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -27,7 +26,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @date 2024/3/4
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/HelpController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.vehicle.client.param.HelpModifyParam;
 import com.chelvc.cloud.vehicle.client.param.HelpPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @date 2024/3/4
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/InviteUserController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.vehicle.client.param.TeamInvitePageParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.base.context.SessionContextHolder;
 import com.chelvc.framework.common.util.StringUtils;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -22,7 +21,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @date 2024/4/30
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/LoginController.java

@@ -7,7 +7,6 @@ import com.chelvc.cloud.user.client.dto.LoginDTO;
 import com.chelvc.cloud.user.client.param.LoginPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -20,7 +19,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @date 2024/4/30
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/MenuController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.user.client.dto.MenuDTO;
 import com.chelvc.cloud.user.client.param.MenuModifyParam;
 import com.chelvc.cloud.user.client.param.MenuQueryParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author Woody
  * @date 2021/10/20
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/MerchantAuthController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.vehicle.client.param.MerchantAuthModifyParam;
 import com.chelvc.cloud.vehicle.client.param.MerchantAuthPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @date 2023/12/13
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/MerchantController.java

@@ -18,7 +18,6 @@ import com.chelvc.cloud.vehicle.client.param.MerchantRankParam;
 import com.chelvc.cloud.vehicle.client.param.ReportModifyParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -35,7 +34,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author Woody
  * @date 2023/9/3
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/NoticeController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.vehicle.client.param.NoticeModifyParam;
 import com.chelvc.cloud.vehicle.client.param.NoticePagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @date 2023/12/13
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/OmsOrderReturnApplyController.java

@@ -5,7 +5,6 @@ import com.chelvc.cloud.vehicle.client.param.OrderReturnApplyModifyParam;
 import com.chelvc.cloud.vehicle.client.param.OrderReturnApplyPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -22,7 +21,6 @@ import javax.validation.constraints.Min;
 /**
  * 订单退货申请接口
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/OrderController.java

@@ -10,7 +10,6 @@ import com.chelvc.cloud.vehicle.client.dto.OmsOrderDetailDTO;
 import com.chelvc.cloud.vehicle.client.param.OrderPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -24,7 +23,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @Date 2023/11/29
  **/
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/ProfitRatioConfigController.java

@@ -11,7 +11,6 @@ import com.chelvc.cloud.vehicle.client.param.QueryProfitRatioConfigParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.base.context.SessionContextHolder;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
 /**
  * 分佣比例配置管理接口
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/ProfitRatioController.java

@@ -7,7 +7,6 @@ import com.chelvc.cloud.vehicle.client.param.QueryPlatformProfitRatioParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.base.context.SessionContextHolder;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -19,7 +18,6 @@ import org.springframework.web.bind.annotation.RestController;
 /**
  * 平台/用户/商家分佣比例管理接口
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/RankAwardConfigController.java

@@ -11,7 +11,6 @@ import com.chelvc.cloud.vehicle.client.param.QueryRankAwardConfigParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.base.context.SessionContextHolder;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -26,7 +25,6 @@ import org.springframework.web.bind.annotation.RestController;
 /**
  * 排行榜奖励配置
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/RankAwardRecordController.java

@@ -8,7 +8,6 @@ import com.chelvc.cloud.vehicle.client.param.HandRankAwardParam;
 import com.chelvc.cloud.vehicle.client.param.QueryRankAwardRecordParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -20,7 +19,6 @@ import org.springframework.web.bind.annotation.RestController;
 /**
  * 排行榜派奖记录
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/ReservationController.java

@@ -9,7 +9,6 @@ import com.chelvc.cloud.vehicle.client.dto.ReservationDTO;
 import com.chelvc.cloud.vehicle.client.param.ReservationPagingParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -24,7 +23,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author liude
  * @Date 2023/1/19
  **/
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/RoleController.java

@@ -12,7 +12,6 @@ import com.chelvc.cloud.user.client.param.RolePagingParam;
 import com.chelvc.cloud.vehicle.client.param.MenuModifyParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -29,7 +28,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author Woody
  * @date 2021/10/20
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping

+ 0 - 2
src/main/java/com/chelvc/cloud/admin/controller/UserController.java

@@ -14,7 +14,6 @@ import com.chelvc.cloud.vehicle.client.param.ReportModifyParam;
 import com.chelvc.framework.base.annotation.ResponseWrapping;
 import com.chelvc.framework.common.model.Pagination;
 import com.chelvc.framework.common.util.ObjectUtils;
-import com.chelvc.framework.security.annotation.Authorize;
 import lombok.RequiredArgsConstructor;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
@@ -29,7 +28,6 @@ import org.springframework.web.bind.annotation.RestController;
  * @author Woody
  * @date 2023/4/30
  */
-@Authorize
 @Validated
 @RestController
 @ResponseWrapping