Commit 93e8bf1e by guojuxing

业绩指标详情接口修复

parent 72a7f5a6
......@@ -77,7 +77,7 @@ public class DataConfigController {
@RequestMapping("/get-single-effect-config")
public RestResponse getSingleEffectConfig() {
return ResultControllerUtils.commonResult(
return ResultControllerUtils.commonResultOne(
dataConfigApiService.getSingleEffectConfig(UserDetailUtils.getUserDetail().getEnterpriseId()),
DataSingleEffectConfigVO.class);
}
......@@ -92,7 +92,7 @@ public class DataConfigController {
@RequestMapping("/get-performance-config")
public RestResponse getPerformanceConfig() {
return ResultControllerUtils.commonResult(
return ResultControllerUtils.commonResultOne(
dataConfigApiService.getPerformanceConfig(UserDetailUtils.getUserDetail().getEnterpriseId()),
PerformanceVO.class);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment