123456789101112131415161718192021222324252627 |
- package com.fdkankan.contro.controller;
- import com.fdkankan.web.response.ResultData;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * TODO
- * </p>
- *
- * @author dengsixing
- * @since 2022/12/13
- **/
- @RestController
- @RequestMapping("/test")
- public class TestController {
- @GetMapping("/test")
- public ResultData test(){
- String test = null;
- test.equals("");
- return ResultData.ok();
- }
- }
|