| | |
| | | package com.yeshi.fanli.controller;
|
| | |
|
| | | import java.io.PrintWriter;
|
| | |
|
| | | import org.springframework.stereotype.Controller;
|
| | | import org.springframework.web.bind.annotation.RequestMapping;
|
| | | import org.yeshi.utils.JsonUtil;
|
| | |
|
| | | import com.yeshi.fanli.util.Constant;
|
| | |
|
| | | @Controller
|
| | | @RequestMapping("client/html/api/v1/config")
|
| | | public class ConfigController {
|
| | |
|
| | |
|
| | | @RequestMapping(value = "getSystemName")
|
| | | public void getSystemName(String[] keys, PrintWriter out) {
|
| | | out.print(JsonUtil.loadTrueResult(Constant.systemCommonConfig.getProjectChineseName() + "后台管理系统"));
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.controller; |
| | | |
| | | import java.io.PrintWriter; |
| | | |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.yeshi.utils.JsonUtil; |
| | | |
| | | import com.yeshi.fanli.util.Constant; |
| | | |
| | | @Controller |
| | | @RequestMapping("client/html/api/v1/config") |
| | | public class ConfigController { |
| | | |
| | | |
| | | @RequestMapping(value = "getSystemName") |
| | | public void getSystemName(String[] keys, PrintWriter out) { |
| | | out.print(JsonUtil.loadTrueResult(Constant.systemCommonConfig.getProjectChineseName() + "后台管理系统")); |
| | | } |
| | | |
| | | } |