| | |
| | | import com.ruoyi.common.utils.EnumUtil; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Anonymous; |
| | | import com.ruoyi.framework.web.domain.R; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | import java.util.Map; |
| | | |
| | | @RestController |
| | | @Api(tags = "枚举接口") |
| | | @Tag(name = "枚举接口") |
| | | @RequestMapping("/basic/enum") |
| | | public class EnumController { |
| | | |