|
@@ -0,0 +1,19 @@
|
|
|
+<?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.gyee.power.fitting.mapper.ProEconPowerModelMapper">
|
|
|
+
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
+ <resultMap id="BaseResultMap" type="com.gyee.power.fitting.model.ProEconPowerModel">
|
|
|
+ <id column="id" property="id" />
|
|
|
+ <result column="windturbine_id" property="windturbineId" />
|
|
|
+ <result column="speed" property="speed" />
|
|
|
+ <result column="power" property="power" />
|
|
|
+ <result column="model_id" property="modelId" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 通用查询结果列 -->
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ id, windturbine_id, speed, power, model_id
|
|
|
+ </sql>
|
|
|
+
|
|
|
+</mapper>
|