OrganizationInfoMapper.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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.lqkj.info.mapper.OrganizationInfoMapper">
  6. <resultMap type="OrganizationInfo" id="OrganizationInfoResult">
  7. <result property="organizationId" column="organization_id" />
  8. <result property="typeId" column="type_id" />
  9. <result property="roomId" column="room_id" />
  10. <result property="buildingId" column="building_id" />
  11. <result property="areaId" column="area_id" />
  12. <result property="organizationName" column="organization_name" />
  13. <result property="intro" column="intro" />
  14. <result property="lngLat" column="lng_lat" />
  15. <result property="rasterLngLat" column="raster_lng_lat" />
  16. <result property="important" column="important" />
  17. <result property="typeName" column="type_name" />
  18. <result property="address" column="address" />
  19. <result property="logo" column="logo" />
  20. <result property="telephone" column="telephone" />
  21. <result property="product" column="product" />
  22. <result property="enterTime" column="enter_time" />
  23. <result property="employeNum" column="employe_num" />
  24. <result property="audio" column="audio" />
  25. <result property="industryType" column="industry_type"/>
  26. <result property="floor" column="floor"/>
  27. <result property="houseTypeId" column="house_type_id"/>
  28. <result property="parkId" column="park_id"/>
  29. </resultMap>
  30. <sql id="selectOrganizationInfoVo">
  31. select organization_id, type_id, room_id, building_id, area_id, organization_name, intro, lng_lat, raster_lng_lat, important, type_name, address, logo, telephone, product, enter_time, employe_num, audio, industry_type, floor, house_type_id, park_id from organization_info
  32. </sql>
  33. <select id="selectOrganizationInfoList" parameterType="OrganizationInfo" resultMap="OrganizationInfoResult">
  34. <include refid="selectOrganizationInfoVo"/>
  35. <where>
  36. <if test="typeId != null "> and type_id = #{typeId}</if>
  37. <if test="roomId != null "> and room_id = #{roomId}</if>
  38. <if test="buildingId != null "> and building_id = #{buildingId}</if>
  39. <if test="areaId != null "> and area_id = #{areaId}</if>
  40. <if test="organizationName != null and organizationName != ''"> and organization_name like concat('%', #{organizationName}, '%')</if>
  41. <if test="important != null "> and important = #{important}</if>
  42. <if test="industryType != null "> and industry_type = #{industryType}</if>
  43. <if test="floor != null "> and floor = #{floor}</if>
  44. <if test="houseTypeId != null "> and house_type_id = #{houseTypeId}</if>
  45. <if test="parkId != null"> and park_id = #{parkId}</if>
  46. </where>
  47. order by organization_id
  48. </select>
  49. <select id="selectOrganizationInfoByOrganizationId" parameterType="Integer" resultMap="OrganizationInfoResult">
  50. <include refid="selectOrganizationInfoVo"/>
  51. where organization_id = #{organizationId}
  52. </select>
  53. <insert id="insertOrganizationInfo" parameterType="OrganizationInfo" useGeneratedKeys="true" keyProperty="organizationId">
  54. insert into organization_info
  55. <trim prefix="(" suffix=")" suffixOverrides=",">
  56. <if test="typeId != null">type_id,</if>
  57. <if test="roomId != null">room_id,</if>
  58. <if test="buildingId != null">building_id,</if>
  59. <if test="areaId != null">area_id,</if>
  60. <if test="organizationName != null and organizationName != ''">organization_name,</if>
  61. <if test="intro != null and intro != ''">intro,</if>
  62. <if test="lngLat != null and lngLat != ''">lng_lat,</if>
  63. <if test="rasterLngLat != null and rasterLngLat != ''">raster_lng_lat,</if>
  64. <if test="important != null">important,</if>
  65. <if test="typeName != null and typeName != ''">type_name,</if>
  66. <if test="address != null and address != ''">address,</if>
  67. <if test="logo != null and logo != ''">logo,</if>
  68. <if test="telephone != null and telephone != ''">telephone,</if>
  69. <if test="product != null and product != ''">product,</if>
  70. <if test="enterTime != null">enter_time,</if>
  71. <if test="employeNum != null">employe_num,</if>
  72. <if test="audio != null and audio != ''">audio,</if>
  73. <if test="industryType != null">industry_type,</if>
  74. <if test="floor != null">floor,</if>
  75. <if test="houseTypeId != null">house_type_id,</if>
  76. <if test="parkId != null">park_id,</if>
  77. </trim>
  78. <trim prefix="values (" suffix=")" suffixOverrides=",">
  79. <if test="typeId != null">#{typeId},</if>
  80. <if test="roomId != null">#{roomId},</if>
  81. <if test="buildingId != null">#{buildingId},</if>
  82. <if test="areaId != null">#{areaId},</if>
  83. <if test="organizationName != null and organizationName != ''">#{organizationName},</if>
  84. <if test="intro != null and intro != ''">#{intro},</if>
  85. <if test="lngLat != null and lngLat != ''">#{lngLat},</if>
  86. <if test="rasterLngLat != null and rasterLngLat != ''">#{rasterLngLat},</if>
  87. <if test="important != null">#{important},</if>
  88. <if test="typeName != null and typeName != ''">#{typeName},</if>
  89. <if test="address != null and address != ''">#{address},</if>
  90. <if test="logo != null and logo != ''">#{logo},</if>
  91. <if test="telephone != null and telephone != ''">#{telephone},</if>
  92. <if test="product != null and product != ''">#{product},</if>
  93. <if test="enterTime != null">#{enterTime},</if>
  94. <if test="employeNum != null">#{employeNum},</if>
  95. <if test="audio != null and audio != ''">#{audio},</if>
  96. <if test="industryType != null">#{industryType},</if>
  97. <if test="floor != null">#{floor},</if>
  98. <if test="houseTypeId != null">#{houseTypeId},</if>
  99. <if test="parkId != null">#{parkId},</if>
  100. </trim>
  101. </insert>
  102. <update id="updateOrganizationInfo" parameterType="OrganizationInfo">
  103. update organization_info
  104. <trim prefix="SET" suffixOverrides=",">
  105. type_id = #{typeId},
  106. room_id = #{roomId},
  107. building_id = #{buildingId},
  108. area_id = #{areaId},
  109. organization_name = #{organizationName},
  110. intro = #{intro},
  111. lng_lat = #{lngLat},
  112. raster_lng_lat = #{rasterLngLat},
  113. important = #{important},
  114. type_name = #{typeName},
  115. address = #{address},
  116. logo = #{logo},
  117. telephone = #{telephone},
  118. product = #{product},
  119. enter_time = #{enterTime},
  120. employe_num = #{employeNum},
  121. audio = #{audio},
  122. industry_type = #{industryType},
  123. floor = #{floor},
  124. house_type_id = #{houseTypeId},
  125. park_id = #{parkId}
  126. </trim>
  127. where organization_id = #{organizationId}
  128. </update>
  129. <delete id="deleteOrganizationInfoByOrganizationId" parameterType="Integer">
  130. delete from organization_info where organization_id = #{organizationId}
  131. </delete>
  132. <delete id="deleteOrganizationInfoByOrganizationIds" parameterType="String">
  133. delete from organization_info where organization_id in
  134. <foreach item="organizationId" collection="array" open="(" separator="," close=")">
  135. #{organizationId}
  136. </foreach>
  137. </delete>
  138. </mapper>