|
|
|
@ -133,7 +133,7 @@ public class ScreenPublicDataServiceImpl extends BaseServiceImpl<ScreenPublicDat |
|
|
|
if(list != null && list.size()>0){ |
|
|
|
OrgrankdataDTO result = new OrgrankdataDTO(); |
|
|
|
result.setDataList(list); |
|
|
|
result.setMonthId(yearMonth); |
|
|
|
result.setMonthId(yearMonth.replace("-","")); |
|
|
|
String json = JSONObject.toJSONString(result); |
|
|
|
String body = epmetUtils.httpPost(EpmetConstant.EPMET_SCREEN_COLL_ORG_RANK, json); |
|
|
|
log.info(body); |
|
|
|
@ -205,7 +205,7 @@ public class ScreenPublicDataServiceImpl extends BaseServiceImpl<ScreenPublicDat |
|
|
|
if(list != null && list.size()>0) { |
|
|
|
UserjoinDTO result = new UserjoinDTO(); |
|
|
|
result.setDataList(list); |
|
|
|
result.setMonthId(yearMonth); |
|
|
|
result.setMonthId(yearMonth.replace("-","")); |
|
|
|
String json = JSONObject.toJSONString(result); |
|
|
|
String body = epmetUtils.httpPost(EpmetConstant.EPMET_SCREEN_COLL_USER_JOIN, json); |
|
|
|
log.info(body); |
|
|
|
@ -248,7 +248,7 @@ public class ScreenPublicDataServiceImpl extends BaseServiceImpl<ScreenPublicDat |
|
|
|
if(list != null && list.size()>0){ |
|
|
|
GovernrankdataDTO result = new GovernrankdataDTO(); |
|
|
|
result.setDataList(list); |
|
|
|
result.setMonthId(yearMonth); |
|
|
|
result.setMonthId(yearMonth.replace("-","")); |
|
|
|
String json = JSONObject.toJSONString(result); |
|
|
|
String body = epmetUtils.httpPost(EpmetConstant.EPMET_SCREEN_COLL_GOVERN_RANK, json); |
|
|
|
log.info(body); |
|
|
|
|