Commit 8f4c5cc0 authored by lilongyang's avatar lilongyang

1、获取并网容量接口的片区数据获取改为从本地获取

2、获取片区指标完成情况接口的片区数据获取改为从本地获取,并与调用外部接口的数据对比汇总
parent e0d20c9d
package com.yeejoin.amos.boot.module.jxiop.api.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yeejoin.amos.boot.module.jxiop.api.entity.StationBasic;
import java.util.List;
public interface EnergyAccessMapper extends BaseMapper<StationBasic> {
List getStationInfo(String areaCode);
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yeejoin.amos.boot.module.jxiop.api.mapper.EnergyAccessMapper">
<select id="getStationInfo" resultType="java.util.Map">
select
sb.station_name,
sb.area_name,
sb.installed_capacity
from station_basic as sb
where sb.area_code = #{areaCode}
</select>
</mapper>
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