123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?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.viewticket.mapper.ticket.WindturbineMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.gyee.viewticket.model.ticket.Windturbine">
- <id column="ID" property="id" />
- <result column="WTNUM" property="wtnum" />
- <result column="OWNERWF" property="ownerwf" />
- <result column="OWNERPROJECT" property="ownerproject" />
- <result column="OWNERLINE" property="ownerline" />
- <result column="ORDERNUM" property="ordernum" />
- <result column="WTWFNUM" property="wtwfnum" />
- <result column="WTGRIDNUM" property="wtgridnum" />
- <result column="VENDOR" property="vendor" />
- <result column="MODEL" property="model" />
- <result column="RATEDPOWER" property="ratedpower" />
- <result column="RATEDWINSPE" property="ratedwinspe" />
- <result column="RATEDVOLTAGE" property="ratedvoltage" />
- <result column="RATEDREV" property="ratedrev" />
- <result column="CUTINWINSPE" property="cutinwinspe" />
- <result column="CUTOUTWINSPE" property="cutoutwinspe" />
- <result column="MAXWINSPE" property="maxwinspe" />
- <result column="LOWERTEMP" property="lowertemp" />
- <result column="HIGHTEMP" property="hightemp" />
- <result column="LOWERREV" property="lowerrev" />
- <result column="HIGHREV" property="highrev" />
- <result column="ROTERDIAMETER" property="roterdiameter" />
- <result column="HUBHEIGHT" property="hubheight" />
- <result column="RELEASEDATE" property="releasedate" />
- <result column="INSTALLDATE" property="installdate" />
- <result column="TESTDATE" property="testdate" />
- <result column="OPDATE" property="opdate" />
- <result column="LOCATION" property="location" />
- <result column="WFLOCATION" property="wflocation" />
- <result column="WTID" property="wtid" />
- </resultMap>
- <!-- 通用查询结果列 -->
- <sql id="Base_Column_List">
- ID, WTNUM, OWNERWF, OWNERPROJECT, OWNERLINE, ORDERNUM, WTWFNUM, WTGRIDNUM, VENDOR, MODEL, RATEDPOWER, RATEDWINSPE, RATEDVOLTAGE, RATEDREV, CUTINWINSPE, CUTOUTWINSPE, MAXWINSPE, LOWERTEMP, HIGHTEMP, LOWERREV, HIGHREV, ROTERDIAMETER, HUBHEIGHT, RELEASEDATE, INSTALLDATE, TESTDATE, OPDATE, LOCATION, WFLOCATION, WTID
- </sql>
- <select id="getWindturbineList" resultType="java.util.HashMap">
- SELECT
- w.WFLOCATION,
- w.WTID,
- w.LOCATION
- FROM
- WINDTURBINE w
- LEFT JOIN LOCATIONS l ON w.LOCATION = l.LOCATION
- <where>
- <if test=" '' != deptnum and null != deptnum ">
- and l.DEPTNUM = #{deptnum}
- </if>
- </where>
- </select>
- <select id="selectWindturbinePageList" resultType="java.util.HashMap">
- SELECT
- w.wtnum,
- w.ownerwf,
- w.ownerproject,
- w.ownerline,
- w.ordernum,
- w.wtwfnum,
- w.wtgridnum,
- w.vendor,
- w.model,
- w.ratedpower,
- w.ratedwinspe,
- w.ratedvoltage,
- w.ratedrev,
- w.cutinwinspe,
- w.cutoutwinspe,
- w.maxwinspe,
- w.lowertemp,
- w.hightemp,
- w.lowerrev,
- w.highrev,
- w.roterdiameter,
- w.hubheight,
- w.releasedate,
- w.installdate,
- w.testdate,
- w.opdate,
- w.location,
- w.wflocation,
- w.wtid
- FROM
- WINDTURBINE w
- LEFT JOIN LOCATIONS l ON w.LOCATION = l.LOCATION
- <where>
- <if test=" '' != wtid and null != wtid ">
- and w.WTID = #{wtid}
- </if>
- </where>
- </select>
- </mapper>
|