获取系统配置信息

yun-zuoyi
曾贞一 6 years ago
parent 014397a8cf
commit 436172c607

@ -1,7 +1,6 @@
package cn.estsh.i3plus.core.apiservice.controller.base;
import cn.estsh.i3plus.core.api.iservice.busi.ISysDictionaryService;
import cn.estsh.i3plus.icloud.form.sdk.IFormSystemCloud;
import cn.estsh.i3plus.icloud.wms.sdk.IWmsCommonCloud;
import cn.estsh.i3plus.pojo.base.bean.BaseConstWords;
import cn.estsh.i3plus.pojo.base.bean.BaseResultBean;
@ -50,9 +49,6 @@ public class SystemController {
private IWmsCommonCloud wmsCommonCloud;
@Autowired
private IFormSystemCloud iFormSystemCloud;
@Autowired
private ISysDictionaryService sysDictionaryService;
@GetMapping("/get-properties")
@ -100,10 +96,6 @@ public class SystemController {
resultMap = getStringObjectMap();
break;
case FORM:
resultBean = iFormSystemCloud.getSystemProperties();
if (resultBean != null && resultBean.isSuccess()) {
resultMap = iFormSystemCloud.getSystemProperties().getResultMap();
}
break;
case REPORT:
resultMap = getStringObjectMap();
@ -115,10 +107,6 @@ public class SystemController {
resultMap = getStringObjectMap();
break;
case WMS:
resultBean = iFormSystemCloud.getSystemProperties();
if (resultBean != null && resultBean.isSuccess()) {
resultMap = wmsCommonCloud.getSystemProperties().getResultMap();
}
break;
}

Loading…
Cancel
Save