| | |
| | | import com.boying.service.BarrierService; |
| | | import com.boying.service.LedShowService; |
| | | import com.boying.service.ParkService; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.data.redis.core.StringRedisTemplate; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | |
| | | @RestController |
| | | @RequestMapping("ledshow") |
| | | @RequiredArgsConstructor |
| | | @Tag(description = "ledshow" , name = "led日志(已废弃)" ) |
| | | public class LedShowController { |
| | | |
| | | private final LedShowService ledShowService; |