ProjectUspEfMonthDataMapper.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ruoyi.predict.mapper.ProjectUspEfMonthDataMapper">
  6. <resultMap type="ProjectUspEfMonthData" id="ProjectUspEfMonthDataResult">
  7. <result property="projectNo" column="project_no"/>
  8. <result property="modelNo" column="model_no"/>
  9. <result property="timeScale" column="time_scale"/>
  10. <result property="dataTime" column="data_time"/>
  11. <result property="nrmse" column="nrmse"/>
  12. <result property="nmae" column="nmae"/>
  13. <result property="bias" column="bias"/>
  14. <result property="correlationCoeff" column="correlation_coeff"/>
  15. <result property="accuracyRate" column="accuracy_rate"/>
  16. <result property="dataCount" column="data_count"/>
  17. <result property="dataFlag" column="data_flag"/>
  18. </resultMap>
  19. <sql id="selectProjectUspEfMonthDataVo">
  20. select project_no, model_no, time_scale, data_time, nrmse, nmae, bias, correlation_coeff, accuracy_rate, data_count, data_flag from project_usp_ef_month_data
  21. </sql>
  22. <select id="selectProjectUspEfMonthDataList" parameterType="ProjectUspEfMonthData"
  23. resultMap="ProjectUspEfMonthDataResult">
  24. <include refid="selectProjectUspEfMonthDataVo"/>
  25. <where>
  26. <if test="nrmse != null ">and nrmse = #{nrmse}</if>
  27. <if test="nmae != null ">and nmae = #{nmae}</if>
  28. <if test="bias != null ">and bias = #{bias}</if>
  29. <if test="correlationCoeff != null ">and correlation_coeff = #{correlationCoeff}</if>
  30. <if test="accuracyRate != null ">and accuracy_rate = #{accuracyRate}</if>
  31. <if test="dataCount != null ">and data_count = #{dataCount}</if>
  32. <if test="dataFlag != null ">and data_flag = #{dataFlag}</if>
  33. </where>
  34. </select>
  35. <select id="selectProjectUspEfMonthDataById" parameterType="Long" resultMap="ProjectUspEfMonthDataResult">
  36. <include refid="selectProjectUspEfMonthDataVo"/>
  37. where project_no = #{projectNo}
  38. </select>
  39. </mapper>