|
|
@ -11,6 +11,7 @@ import com.elink.esua.epdc.dto.screen.result.*; |
|
|
|
import com.elink.esua.epdc.modules.screen.dao.ScreenGovernanceDao; |
|
|
|
import com.elink.esua.epdc.modules.screen.service.ScreenGovernanceService; |
|
|
|
import com.elink.esua.epdc.utils.EpmetUtils; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
@ -28,6 +29,7 @@ import java.util.Optional; |
|
|
|
* @author zhy |
|
|
|
* @date 2021/6/28 13:51 |
|
|
|
*/ |
|
|
|
@Slf4j |
|
|
|
@Service |
|
|
|
public class ScreenGovernanceServiceImpl extends BaseServiceImpl<ScreenGovernanceDao, ScreenGovernanceResultDTO> implements ScreenGovernanceService { |
|
|
|
|
|
|
@ -129,7 +131,8 @@ public class ScreenGovernanceServiceImpl extends BaseServiceImpl<ScreenGovernanc |
|
|
|
jsonObject.put("isFirst", true); |
|
|
|
jsonObject.put("dateId", yearMonthDay); |
|
|
|
jsonObject.put("dataList", data); |
|
|
|
epmetUtils.httpPost(EpmetConstant.EPMET_SCREEN_GOV_RANK_DATA, JSONObject.toJSONString(jsonObject)); |
|
|
|
String body = epmetUtils.httpPost(EpmetConstant.EPMET_SCREEN_GOV_RANK_DATA, JSONObject.toJSONString(jsonObject)); |
|
|
|
log.info(body); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|