SmartCodeOpenIdController.java 495 B

123456789101112131415161718192021222324
  1. package com.template.controller;
  2. import com.template.annotation.DESRespondSecret;
  3. import com.template.api.SmartCodeOpenIdControllerAPI;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.web.bind.annotation.RestController;
  6. /**
  7. * <p>
  8. * 前端控制器
  9. * </p>
  10. *
  11. * @author ceshi
  12. * @since 2024-01-26
  13. */
  14. @RestController
  15. //返回参数加密注解
  16. @DESRespondSecret
  17. public class SmartCodeOpenIdController implements SmartCodeOpenIdControllerAPI {
  18. }