You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
2.1 KiB
33 lines
2.1 KiB
2 years ago
|
<?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.hnac.hzims.scheduled.mapper.operation.PowerMapper">
|
||
|
<resultMap id="BaseResultMap" type="com.hnac.hzims.operational.fill.entity.PowerEntity">
|
||
|
<id column="ID" property="id" jdbcType="BIGINT"/>
|
||
|
<result column="MON" property="mon" jdbcType="VARCHAR"/>
|
||
|
<result column="INSTALLED_CAPACITY" property="installedCapacity" jdbcType="DOUBLE"/>
|
||
|
<result column="PLANNED_POWER_YEAR" property="plannedPowerYear" jdbcType="DOUBLE"/>
|
||
|
<result column="PLANNED_POWER_MON" property="plannedPowerMon" jdbcType="DOUBLE"/>
|
||
|
<result column="POWER_MON" property="powerMon" jdbcType="DOUBLE"/>
|
||
|
<result column="POWER_RATE_MON" property="powerRateMon" jdbcType="VARCHAR"/>
|
||
|
<result column="POWER_YEAR" property="powerYear" jdbcType="DOUBLE"/>
|
||
|
<result column="POWER_RATE_YEAR" property="powerRateYear" jdbcType="DOUBLE"/>
|
||
|
<result column="DOUBLE_QUALIFY_RATE" property="doubleQualifyRate" jdbcType="VARCHAR"/>
|
||
|
<result column="TYPE" property="type" jdbcType="INTEGER"/>
|
||
|
<result column="TENANT_ID" property="tenantId" jdbcType="VARCHAR"/>
|
||
|
<result column="STATUS" property="status" jdbcType="TINYINT"/>
|
||
|
<result column="CREATE_TIME" property="createTime" jdbcType="TIMESTAMP"/>
|
||
|
<result column="UPDATE_TIME" property="updateTime" jdbcType="TIMESTAMP"/>
|
||
|
<result column="CREATE_USER" property="createUser" jdbcType="BIGINT"/>
|
||
|
<result column="UPDATE_USER" property="updateUser" jdbcType="BIGINT"/>
|
||
|
<result column="IS_DELETED" property="isDeleted" jdbcType="TINYINT"/>
|
||
|
<result column="CREATE_DEPT" property="createDept" jdbcType="BIGINT"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
ID, MON, INSTALLED_CAPACITY , PLANNED_POWER_YEAR , PLANNED_POWER_MON , POWER_MON , POWER_RATE_MON ,POWER_YEAR ,
|
||
|
POWER_RATE_YEAR , DOUBLE_QUALIFY_RATE , TYPE , TENANT_ID, STATUS, CREATE_TIME, UPDATE_TIME, CREATE_USER, UPDATE_USER,
|
||
|
IS_DELETED, CREATE_DEPT
|
||
|
</sql>
|
||
|
|
||
|
</mapper>
|