| | |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.CrossOrigin; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | |
| | | @Slf4j |
| | | @RestController |
| | | @Api(description = "首页接口") |
| | | @RequestMapping("/api/index") |
| | | @RequestMapping("/api2/index") |
| | | @CrossOrigin("*") |
| | | public class IndexController { |
| | | @Autowired |
| | | private IOrgYanglaoService iOrgYanglaoService; |