whyczh
2021-12-11 7d854ecb182bf2c8135778a11a7e099a2e78ce4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.whyc.controller;
 
import com.whyc.dto.Response;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@RequestMapping("weather")
@Api(tags = "天气查询")
@Slf4j
public class WeatherController {
 
    public Response get(){
 
        return null;
    }
}