Commit b8f365b0 authored by danfuman's avatar danfuman

Merge branch 'V20240805' of http://192.168.60.201/root/dsk-cr20g into V20240805

parents 0baa80c0 2e7ffd8a
...@@ -29,9 +29,9 @@ captcha: ...@@ -29,9 +29,9 @@ captcha:
# 开发环境配置 # 开发环境配置
server: server:
# 服务器的HTTP端口,默认为8080 # 服务器的HTTP端口,默认为8080
# port: 9098 port: 9098
# 二十局线上端口9097 # 二十局线上端口9097
port: 9097 # port: 9097
servlet: servlet:
# 应用的访问路径 # 应用的访问路径
context-path: / context-path: /
......
...@@ -322,4 +322,21 @@ public class IndexController { ...@@ -322,4 +322,21 @@ public class IndexController {
return enterpriseService.zxzxmqytj(object); return enterpriseService.zxzxmqytj(object);
} }
/**
*
*
* 集团中标业绩统计统计图--刘杰那边的接口
* /nationzj/landMarket/companyStatis
* @param object
* @return {@link AjaxResult }
* @throws Exception
*/
@PostMapping(value = "/project/combine/recentlyStatis")
public AjaxResult projectCombineRecentlyStatis(@RequestBody JSONObject object) {
return enterpriseService.projectCombineRecentlyStatis(object);
}
} }
...@@ -7,6 +7,7 @@ import cn.hutool.json.JSONObject; ...@@ -7,6 +7,7 @@ import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil; import cn.hutool.json.JSONUtil;
import com.dsk.common.core.domain.AjaxResult; import com.dsk.common.core.domain.AjaxResult;
import com.dsk.common.utils.DateUtils; import com.dsk.common.utils.DateUtils;
import com.dsk.common.utils.StringUtils;
import com.dsk.system.utils.DskOpenApiUtil; import com.dsk.system.utils.DskOpenApiUtil;
import org.apache.commons.collections4.MapUtils; import org.apache.commons.collections4.MapUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
...@@ -33,6 +34,16 @@ public class IndexService { ...@@ -33,6 +34,16 @@ public class IndexService {
@Autowired @Autowired
private DskOpenApiUtil dskOpenApiUtil; private DskOpenApiUtil dskOpenApiUtil;
public AjaxResult projectCombineRecentlyStatis(JSONObject object) {
String combineId = object.getStr("combineId");
if(StringUtils.isEmpty(combineId)){
return AjaxResult.error("combineId不能为空");
}
Map<String, Object> map = dskOpenApiUtil.requestBody("/nationzj/project/combine/recentlyStatis", object);
return BeanUtil.toBean(map, AjaxResult.class);
}
public AjaxResult zxzxmqytj(JSONObject object) { public AjaxResult zxzxmqytj(JSONObject object) {
JSONObject page = object.getJSONObject("page"); JSONObject page = object.getJSONObject("page");
......
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