package com.jcdm.web.controller.system; import java.util.List; import javax.servlet.http.HttpServletResponse; 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.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.jcdm.common.annotation.Log; import com.jcdm.common.core.controller.BaseController; import com.jcdm.common.core.domain.AjaxResult; import com.jcdm.common.core.page.TableDataInfo; import com.jcdm.common.enums.BusinessType; import com.jcdm.common.utils.poi.ExcelUtil; import com.jcdm.system.domain.SysConfig; import com.jcdm.system.service.ISysConfigService; /** * 傿•°é…ç½® ä¿¡æ¯æ“ä½œå¤„ç† * * @author jc */ @RestController @RequestMapping("/system/config") public class SysConfigController extends BaseController { @Autowired private ISysConfigService configService; /** * 获å–傿•°é…置列表 */ @PreAuthorize("@ss.hasPermi('system:config:list')") @GetMapping("/list") public TableDataInfo list(SysConfig config) { startPage(); List<SysConfig> list = configService.selectConfigList(config); return getDataTable(list); } @Log(title = "傿•°ç®¡ç†", businessType = BusinessType.EXPORT) @PreAuthorize("@ss.hasPermi('system:config:export')") @PostMapping("/export") public void export(HttpServletResponse response, SysConfig config) { List<SysConfig> list = configService.selectConfigList(config); ExcelUtil<SysConfig> util = new ExcelUtil<SysConfig>(SysConfig.class); util.exportExcel(response, list, "傿•°æ•°æ®"); } /** * æ ¹æ®å‚æ•°ç¼–å·èŽ·å–è¯¦ç»†ä¿¡æ¯ */ @PreAuthorize("@ss.hasPermi('system:config:query')") @GetMapping(value = "/{configId}") public AjaxResult getInfo(@PathVariable Long configId) { return success(configService.selectConfigById(configId)); } /** * æ ¹æ®å‚æ•°é”®åæŸ¥è¯¢å‚数值 */ @GetMapping(value = "/configKey/{configKey}") public AjaxResult getConfigKey(@PathVariable String configKey) { return success(configService.selectConfigByKey(configKey)); } /** * æ–°å¢žå‚æ•°é…ç½® */ @PreAuthorize("@ss.hasPermi('system:config:add')") @Log(title = "傿•°ç®¡ç†", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@Validated @RequestBody SysConfig config) { if (!configService.checkConfigKeyUnique(config)) { return error("æ–°å¢žå‚æ•°'" + config.getConfigName() + "'å¤±è´¥ï¼Œå‚æ•°é”®åå·²å˜åœ¨"); } config.setCreateBy(getUsername()); return toAjax(configService.insertConfig(config)); } /** * ä¿®æ”¹å‚æ•°é…ç½® */ @PreAuthorize("@ss.hasPermi('system:config:edit')") @Log(title = "傿•°ç®¡ç†", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@Validated @RequestBody SysConfig config) { if (!configService.checkConfigKeyUnique(config)) { return error("ä¿®æ”¹å‚æ•°'" + config.getConfigName() + "'å¤±è´¥ï¼Œå‚æ•°é”®åå·²å˜åœ¨"); } config.setUpdateBy(getUsername()); return toAjax(configService.updateConfig(config)); } /** * åˆ é™¤å‚æ•°é…ç½® */ @PreAuthorize("@ss.hasPermi('system:config:remove')") @Log(title = "傿•°ç®¡ç†", businessType = BusinessType.DELETE) @DeleteMapping("/{configIds}") public AjaxResult remove(@PathVariable Long[] configIds) { configService.deleteConfigByIds(configIds); return success(); } /** * åˆ·æ–°å‚æ•°ç¼“å˜ */ @PreAuthorize("@ss.hasPermi('system:config:remove')") @Log(title = "傿•°ç®¡ç†", businessType = BusinessType.CLEAN) @DeleteMapping("/refreshCache") public AjaxResult refreshCache() { configService.resetConfigCache(); return success(); } }