WindturbineMapper.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.gyee.viewticket.mapper.ticket.WindturbineMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.gyee.viewticket.model.ticket.Windturbine">
  6. <id column="ID" property="id" />
  7. <result column="WTNUM" property="wtnum" />
  8. <result column="OWNERWF" property="ownerwf" />
  9. <result column="OWNERPROJECT" property="ownerproject" />
  10. <result column="OWNERLINE" property="ownerline" />
  11. <result column="ORDERNUM" property="ordernum" />
  12. <result column="WTWFNUM" property="wtwfnum" />
  13. <result column="WTGRIDNUM" property="wtgridnum" />
  14. <result column="VENDOR" property="vendor" />
  15. <result column="MODEL" property="model" />
  16. <result column="RATEDPOWER" property="ratedpower" />
  17. <result column="RATEDWINSPE" property="ratedwinspe" />
  18. <result column="RATEDVOLTAGE" property="ratedvoltage" />
  19. <result column="RATEDREV" property="ratedrev" />
  20. <result column="CUTINWINSPE" property="cutinwinspe" />
  21. <result column="CUTOUTWINSPE" property="cutoutwinspe" />
  22. <result column="MAXWINSPE" property="maxwinspe" />
  23. <result column="LOWERTEMP" property="lowertemp" />
  24. <result column="HIGHTEMP" property="hightemp" />
  25. <result column="LOWERREV" property="lowerrev" />
  26. <result column="HIGHREV" property="highrev" />
  27. <result column="ROTERDIAMETER" property="roterdiameter" />
  28. <result column="HUBHEIGHT" property="hubheight" />
  29. <result column="RELEASEDATE" property="releasedate" />
  30. <result column="INSTALLDATE" property="installdate" />
  31. <result column="TESTDATE" property="testdate" />
  32. <result column="OPDATE" property="opdate" />
  33. <result column="LOCATION" property="location" />
  34. <result column="WFLOCATION" property="wflocation" />
  35. <result column="WTID" property="wtid" />
  36. </resultMap>
  37. <!-- 通用查询结果列 -->
  38. <sql id="Base_Column_List">
  39. 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
  40. </sql>
  41. <select id="getWindturbineList" resultType="java.util.HashMap">
  42. SELECT
  43. w.WFLOCATION,
  44. w.WTID,
  45. w.LOCATION
  46. FROM
  47. WINDTURBINE w
  48. LEFT JOIN LOCATIONS l ON w.LOCATION = l.LOCATION
  49. <where>
  50. <if test=" '' != deptnum and null != deptnum ">
  51. and l.DEPTNUM = #{deptnum}
  52. </if>
  53. </where>
  54. </select>
  55. <select id="selectWindturbinePageList" resultType="java.util.HashMap">
  56. SELECT
  57. w.wtnum,
  58. w.ownerwf,
  59. w.ownerproject,
  60. w.ownerline,
  61. w.ordernum,
  62. w.wtwfnum,
  63. w.wtgridnum,
  64. w.vendor,
  65. w.model,
  66. w.ratedpower,
  67. w.ratedwinspe,
  68. w.ratedvoltage,
  69. w.ratedrev,
  70. w.cutinwinspe,
  71. w.cutoutwinspe,
  72. w.maxwinspe,
  73. w.lowertemp,
  74. w.hightemp,
  75. w.lowerrev,
  76. w.highrev,
  77. w.roterdiameter,
  78. w.hubheight,
  79. w.releasedate,
  80. w.installdate,
  81. w.testdate,
  82. w.opdate,
  83. w.location,
  84. w.wflocation,
  85. w.wtid
  86. FROM
  87. WINDTURBINE w
  88. LEFT JOIN LOCATIONS l ON w.LOCATION = l.LOCATION
  89. <where>
  90. <if test=" '' != wtid and null != wtid ">
  91. and w.WTID = #{wtid}
  92. </if>
  93. </where>
  94. </select>
  95. </mapper>