|
|
@@ -0,0 +1,43 @@
|
|
|
+package com.fs.company.controller.company;
|
|
|
+
|
|
|
+import cn.hutool.core.util.ObjectUtil;
|
|
|
+import com.fs.common.annotation.Log;
|
|
|
+import com.fs.common.annotation.RepeatSubmit;
|
|
|
+import com.fs.common.constant.UserConstants;
|
|
|
+import com.fs.common.core.controller.BaseController;
|
|
|
+import com.fs.common.core.domain.AjaxResult;
|
|
|
+import com.fs.common.core.domain.R;
|
|
|
+import com.fs.common.core.page.TableDataInfo;
|
|
|
+import com.fs.common.core.redis.RedisCache;
|
|
|
+import com.fs.common.enums.BusinessType;
|
|
|
+import com.fs.common.utils.SecurityUtils;
|
|
|
+import com.fs.common.utils.poi.ExcelUtil;
|
|
|
+import com.fs.system.domain.SysConfig;
|
|
|
+import com.fs.system.service.ISysConfigService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 参数配置 信息操作处理
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/system/config")
|
|
|
+public class SysConfigController extends BaseController {
|
|
|
+ @Autowired
|
|
|
+ private ISysConfigService configService;
|
|
|
+ @Autowired
|
|
|
+ public RedisCache redisCache;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ @GetMapping(value = "/getConfigByKey/{configKey}")
|
|
|
+ public AjaxResult getConfigByKey(@PathVariable String configKey) {
|
|
|
+ SysConfig config = configService.selectConfigByConfigKey(configKey);
|
|
|
+ return AjaxResult.success(config);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|