|
@@ -0,0 +1,44 @@
|
|
|
|
+package com.fs.course.controller;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+import cn.hutool.json.JSONUtil;
|
|
|
|
+import com.fs.common.core.domain.R;
|
|
|
|
+import com.fs.his.domain.*;
|
|
|
|
+import com.fs.his.param.*;
|
|
|
|
+import com.fs.his.service.*;
|
|
|
|
+import com.fs.his.vo.*;
|
|
|
|
+import com.fs.store.config.ConceptConfig;
|
|
|
|
+import com.fs.system.service.ISysConfigService;
|
|
|
|
+import com.github.pagehelper.PageHelper;
|
|
|
|
+import com.github.pagehelper.PageInfo;
|
|
|
|
+import io.swagger.annotations.Api;
|
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.cache.annotation.Cacheable;
|
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
+
|
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+@Api("首页接口")
|
|
|
|
+@RestController
|
|
|
|
+@RequestMapping(value="/app/index")
|
|
|
|
+public class IndexController extends AppBaseController {
|
|
|
|
+ @Autowired
|
|
|
|
+ private ISysConfigService configService;
|
|
|
|
+
|
|
|
|
+ @ApiOperation("企业理念")
|
|
|
|
+ @GetMapping("/getConcept")
|
|
|
|
+ @springfox.documentation.annotations.Cacheable("getConcept")
|
|
|
|
+ public R getConcept(HttpServletRequest request){
|
|
|
|
+ String json=configService.selectConfigByKey("store.concept");
|
|
|
|
+ ConceptConfig config = JSONUtil.toBean(json, ConceptConfig.class);
|
|
|
|
+ return R.ok().put("data",config);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+}
|