|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | import javax.servlet.http.HttpServletResponse; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import io.swagger.annotations.Api; | 
|---|
|  |  |  | import io.swagger.annotations.ApiOperation; | 
|---|
|  |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
|---|
|  |  |  | import org.springframework.security.access.prepost.PreAuthorize; | 
|---|
|  |  |  | import org.springframework.validation.annotation.Validated; | 
|---|
|  |  |  | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @author ruoyi | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Api(tags = "参数配置") | 
|---|
|  |  |  | @RestController | 
|---|
|  |  |  | @RequestMapping("/system/config") | 
|---|
|  |  |  | public class SysConfigController extends BaseController | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 根据参数键名查询参数值 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiOperation("根据参数键名查询参数值") | 
|---|
|  |  |  | @GetMapping(value = "/configKey/{configKey}") | 
|---|
|  |  |  | public AjaxResult getConfigKey(@PathVariable String configKey) | 
|---|
|  |  |  | { | 
|---|