Browse Source

月度指数分析-柱状图 customerId写死

master
zxc 5 years ago
parent
commit
6927d0c73b
  1. 6
      epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/service/screen/impl/IndexServiceImpl.java

6
epmet-module/data-report/data-report-server/src/main/java/com/epmet/datareport/service/screen/impl/IndexServiceImpl.java

@ -78,7 +78,11 @@ public class IndexServiceImpl implements IndexService {
@DataSource(value = DataSourceConstant.STATS,datasourceNameFromArg = true)
@Override
public MonthBarchartResultDTO monthBarchart(MonthBarchartFormDTO monthBarchartFormDTO, ExternalAppRequestParam externalAppRequestParam) {
String customerId = externalAppRequestParam.getCustomerId();
// String customerId = externalAppRequestParam.getCustomerId();
// 验签关闭,customerId无法获取,暂时写死
String customerId = "b09527201c4409e19d1dbc5e3c3429a1";
MonthBarchartResultDTO result = new MonthBarchartResultDTO();
List<Double> serviceAbilityData = new ArrayList<>();
List<Double> partyDevAbilityData = new ArrayList<>();

Loading…
Cancel
Save