44 lines
1.6 KiB
Java
44 lines
1.6 KiB
Java
package com.jsh.erp.controller;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.jsh.erp.constants.ExceptionConstants;
|
|
import com.jsh.erp.exception.BusinessRunTimeException;
|
|
import com.jsh.erp.service.systemConfig.SystemConfigService;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
/**
|
|
* Description
|
|
* @Author: jishenghua
|
|
* @Date: 2019/4/1 15:28
|
|
*/
|
|
@RestController
|
|
@RequestMapping(value = "/systemConfig")
|
|
public class SystemConfigController {
|
|
private Logger logger = LoggerFactory.getLogger(SystemConfigController.class);
|
|
@Resource
|
|
private SystemConfigService systemConfigService;
|
|
|
|
/**
|
|
* 批量删除系统配置信息
|
|
*/
|
|
@RequestMapping(value = "/batchDeleteSystemConfigByIds")
|
|
public Object batchDeleteSystemConfigByIds(@RequestParam("ids") String ids) throws Exception {
|
|
JSONObject result = ExceptionConstants.standardSuccess();
|
|
int i= systemConfigService.batchDeleteSystemConfigByIds(ids);
|
|
if(i<1){
|
|
logger.error("异常码[{}],异常提示[{}],参数,ids[{}]",
|
|
ExceptionConstants.SYSTEM_CONFIG_DELETE_FAILED_CODE,ExceptionConstants.SYSTEM_CONFIG_DELETE_FAILED_MSG,ids);
|
|
throw new BusinessRunTimeException(ExceptionConstants.SYSTEM_CONFIG_DELETE_FAILED_CODE,
|
|
ExceptionConstants.SYSTEM_CONFIG_DELETE_FAILED_MSG);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
}
|