|
|
@ -1,13 +1,14 @@ |
|
|
|
package com.lzbi.bi.mapper; |
|
|
|
|
|
|
|
import com.alibaba.fastjson2.JSONObject; |
|
|
|
import com.lzbi.bi.domain.vo.MapOrgVO; |
|
|
|
import com.lzbi.common.constant.BizConstants; |
|
|
|
import com.lzbi.draft.domain.dto.SomeOrgSomedayMultiReportDataDTO; |
|
|
|
import com.lzbi.draft.domain.dto.SomeTypeChildrenOrgSomedayMultiReportDataDTO; |
|
|
|
import com.lzbi.draft.domain.req.ReportDataReq; |
|
|
|
import com.lzbi.draft.domain.vo.ChildrenOrgSomedaySomeReportDataVO; |
|
|
|
import com.lzbi.draft.domain.vo.SomeOrgSomeReportYearlyDataVO; |
|
|
|
import com.lzbi.draft.domain.vo.SomeOrgSomedaySomeReportDataVO; |
|
|
|
import com.lzbi.bi.domain.dto.SomeOrgSomedayMultiReportDataDTO; |
|
|
|
import com.lzbi.bi.domain.dto.SomeTypeChildrenOrgSomedayMultiReportDataDTO; |
|
|
|
import com.lzbi.bi.domain.req.ReportDataReq; |
|
|
|
import com.lzbi.bi.domain.vo.ChildrenOrgSomedaySomeReportDataVO; |
|
|
|
import com.lzbi.bi.domain.vo.SomeOrgSomeReportYearlyDataVO; |
|
|
|
import com.lzbi.bi.domain.vo.SomeOrgSomedaySomeReportDataVO; |
|
|
|
import org.springframework.stereotype.Component; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
@ -169,4 +170,14 @@ public class ScreenMockDataMapper { |
|
|
|
result.add(new SomeOrgSomeReportYearlyDataVO("联网面积", "2024", BigDecimal.valueOf(50))); |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
public List<MapOrgVO> selectMapOrgList(ReportDataReq reportDataReq) { |
|
|
|
List<MapOrgVO> result = new ArrayList<>(); |
|
|
|
result.add(new MapOrgVO(103L, "沈阳浑南热力有限责任公司", BigDecimal.valueOf(1000))); |
|
|
|
result.add(new MapOrgVO(104L, "沈阳国新环保新能源有限责任公司", BigDecimal.valueOf(1002))); |
|
|
|
result.add(new MapOrgVO(107L, "沈阳国润低碳有限责任公司", BigDecimal.valueOf(1300))); |
|
|
|
result.add(new MapOrgVO(210L, "沈阳新北热电", BigDecimal.valueOf(1101))); |
|
|
|
result.add(new MapOrgVO(214L, "沈阳国惠低碳", BigDecimal.valueOf(1134))); |
|
|
|
return result; |
|
|
|
} |
|
|
|
} |
|
|
|