FhzgLimitTransferSchemePathDetailMapper.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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.hdkj.lt.mq.mapper.voltageLimitViolation.FhzgLimitTransferSchemePathDetailMapper">
  6. <resultMap id="BaseResultMap" type="com.hdkj.lt.core.bizms.modle.po.voltageLimitViolation.FhzgLimitTransferSchemePathDetail">
  7. <id property="id" column="id" jdbcType="BIGINT"/>
  8. <result property="schemeId" column="scheme_id" jdbcType="BIGINT"/>
  9. <result property="oppositeLineId" column="opposite_line_id" jdbcType="VARCHAR"/>
  10. <result property="oppositeLineName" column="opposite_line_name" jdbcType="VARCHAR"/>
  11. <result property="switchId" column="switch_id" jdbcType="VARCHAR"/>
  12. <result property="switchName" column="switch_name" jdbcType="VARCHAR"/>
  13. <result property="startSwitchId" column="start_switch_id" jdbcType="VARCHAR"/>
  14. <result property="startSwitchName" column="start_switch_name" jdbcType="VARCHAR"/>
  15. <result property="switchSectionId" column="switch_section_id" jdbcType="VARCHAR"/>
  16. <result property="switchSectionName" column="switch_section_name" jdbcType="VARCHAR"/>
  17. <result property="endSwitchId" column="end_switch_id" jdbcType="VARCHAR"/>
  18. <result property="endSwitchName" column="end_switch_name" jdbcType="VARCHAR"/>
  19. <result property="switchSectionLoads" column="switch_section_loads" jdbcType="DECIMAL"/>
  20. <result property="loadFactor" column="load_factor" jdbcType="DECIMAL"/>
  21. <result property="creator" column="creator" jdbcType="BIGINT"/>
  22. <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
  23. <result property="lastEditor" column="last_editor" jdbcType="BIGINT"/>
  24. <result property="lastTime" column="last_time" jdbcType="TIMESTAMP"/>
  25. </resultMap>
  26. <sql id="Base_Column_List">
  27. id,scheme_id,opposite_line_id,
  28. opposite_line_name,switch_id,switch_name,
  29. start_switch_id,start_switch_name,switch_section_id,
  30. switch_section_name,end_switch_id,end_switch_name,
  31. switch_section_loads,load_factor,creator,
  32. create_time,last_editor,last_time
  33. </sql>
  34. </mapper>