12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?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.ruoyi.predict.mapper.PvUspTsPeriodDataMapper">
-
- <resultMap type="PvUspTsPeriodData" id="PvUspTsPeriodDataResult">
- <result property="pvNo" column="pv_no" />
- <result property="modelNo" column="model_no" />
- <result property="timeScale" column="time_scale" />
- <result property="dataTime" column="data_time" />
- <result property="ghi" column="ghi" />
- <result property="modCoeff" column="mod_coeff" />
- <result property="power" column="power" />
- <result property="modPower" column="mod_power" />
- <result property="dataFlag" column="data_flag" />
- </resultMap>
- <sql id="selectPvUspTsPeriodDataVo">
- select pv_no, model_no, time_scale, data_time, ghi, mod_coeff, power, mod_power, data_flag from pv_usp_ts_period_data
- </sql>
- <select id="selectPvUspTsPeriodDataList" parameterType="PvUspTsPeriodData" resultMap="PvUspTsPeriodDataResult">
- <include refid="selectPvUspTsPeriodDataVo"/>
- <where>
- <if test="pvNo != null ">and pv_no = #{pvNo}</if>
- <if test="modelNo != null ">and model_no = #{modelNo}</if>
- <if test="timeScale != null ">and time_scale = #{timeScale}</if>
- <if test="ghi != null "> and ghi = #{ghi}</if>
- <if test="modCoeff != null "> and mod_coeff = #{modCoeff}</if>
- <if test="power != null "> and power = #{power}</if>
- <if test="modPower != null "> and mod_power = #{modPower}</if>
- <if test="dataFlag != null "> and data_flag = #{dataFlag}</if>
- <if test="params.beginDataTime != null and params.beginDataTime != '' and params.endDataTime != null and params.endDataTime != ''">
- and data_time between to_date(#{params.beginDataTime},'yyyy-MM-dd HH24:MI:SS') and
- to_date(#{params.endDataTime},'yyyy-MM-dd HH24:MI:SS')
- </if>
- <if test="dataTime != null ">and data_time = #{dataTime}</if>
- </where>
- </select>
-
- <select id="selectPvUspTsPeriodDataById" parameterType="Long" resultMap="PvUspTsPeriodDataResult">
- <include refid="selectPvUspTsPeriodDataVo"/>
- where pv_no = #{pvNo}
- </select>
- <select id="selectPvUspTsPeriodData" parameterType="PvUspTsPeriodData" resultMap="PvUspTsPeriodDataResult">
- <include refid="selectPvUspTsPeriodDataVo"/>
- where pv_no = #{pvNo} and model_no = #{modelNo} and time_scale = #{timeScale} and data_time = #{dataTime}
- </select>
- </mapper>
|