| | |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "通用接口") |
| | | @RequestMapping("/api/common") |
| | | @RequestMapping("/api2/common") |
| | | @CrossOrigin("*") |
| | | public class CommonController { |
| | | @Autowired |
| | | private IAreaService iAreaService; |