123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <?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.lqkj.info.mapper.OrganizationInfoMapper">
- <resultMap type="OrganizationInfo" id="OrganizationInfoResult">
- <result property="organizationId" column="organization_id" />
- <result property="typeId" column="type_id" />
- <result property="roomId" column="room_id" />
- <result property="buildingId" column="building_id" />
- <result property="areaId" column="area_id" />
- <result property="organizationName" column="organization_name" />
- <result property="intro" column="intro" />
- <result property="lngLat" column="lng_lat" />
- <result property="rasterLngLat" column="raster_lng_lat" />
- <result property="important" column="important" />
- <result property="typeName" column="type_name" />
- <result property="address" column="address" />
- <result property="logo" column="logo" />
- <result property="telephone" column="telephone" />
- <result property="product" column="product" />
- <result property="enterTime" column="enter_time" />
- <result property="employeNum" column="employe_num" />
- <result property="audio" column="audio" />
- <result property="industryType" column="industry_type"/>
- <result property="floor" column="floor"/>
- <result property="houseTypeId" column="house_type_id"/>
- <result property="parkId" column="park_id"/>
- </resultMap>
- <sql id="selectOrganizationInfoVo">
- 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
- </sql>
- <select id="selectOrganizationInfoList" parameterType="OrganizationInfo" resultMap="OrganizationInfoResult">
- <include refid="selectOrganizationInfoVo"/>
- <where>
- <if test="typeId != null "> and type_id = #{typeId}</if>
- <if test="roomId != null "> and room_id = #{roomId}</if>
- <if test="buildingId != null "> and building_id = #{buildingId}</if>
- <if test="areaId != null "> and area_id = #{areaId}</if>
- <if test="organizationName != null and organizationName != ''"> and organization_name like concat('%', #{organizationName}, '%')</if>
- <if test="important != null "> and important = #{important}</if>
- <if test="industryType != null "> and industry_type = #{industryType}</if>
- <if test="floor != null "> and floor = #{floor}</if>
- <if test="houseTypeId != null "> and house_type_id = #{houseTypeId}</if>
- <if test="parkId != null"> and park_id = #{parkId}</if>
- </where>
- order by organization_id
- </select>
- <select id="selectOrganizationInfoByOrganizationId" parameterType="Integer" resultMap="OrganizationInfoResult">
- <include refid="selectOrganizationInfoVo"/>
- where organization_id = #{organizationId}
- </select>
- <insert id="insertOrganizationInfo" parameterType="OrganizationInfo" useGeneratedKeys="true" keyProperty="organizationId">
- insert into organization_info
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="typeId != null">type_id,</if>
- <if test="roomId != null">room_id,</if>
- <if test="buildingId != null">building_id,</if>
- <if test="areaId != null">area_id,</if>
- <if test="organizationName != null and organizationName != ''">organization_name,</if>
- <if test="intro != null and intro != ''">intro,</if>
- <if test="lngLat != null and lngLat != ''">lng_lat,</if>
- <if test="rasterLngLat != null and rasterLngLat != ''">raster_lng_lat,</if>
- <if test="important != null">important,</if>
- <if test="typeName != null and typeName != ''">type_name,</if>
- <if test="address != null and address != ''">address,</if>
- <if test="logo != null and logo != ''">logo,</if>
- <if test="telephone != null and telephone != ''">telephone,</if>
- <if test="product != null and product != ''">product,</if>
- <if test="enterTime != null">enter_time,</if>
- <if test="employeNum != null">employe_num,</if>
- <if test="audio != null and audio != ''">audio,</if>
- <if test="industryType != null">industry_type,</if>
- <if test="floor != null">floor,</if>
- <if test="houseTypeId != null">house_type_id,</if>
- <if test="parkId != null">park_id,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="typeId != null">#{typeId},</if>
- <if test="roomId != null">#{roomId},</if>
- <if test="buildingId != null">#{buildingId},</if>
- <if test="areaId != null">#{areaId},</if>
- <if test="organizationName != null and organizationName != ''">#{organizationName},</if>
- <if test="intro != null and intro != ''">#{intro},</if>
- <if test="lngLat != null and lngLat != ''">#{lngLat},</if>
- <if test="rasterLngLat != null and rasterLngLat != ''">#{rasterLngLat},</if>
- <if test="important != null">#{important},</if>
- <if test="typeName != null and typeName != ''">#{typeName},</if>
- <if test="address != null and address != ''">#{address},</if>
- <if test="logo != null and logo != ''">#{logo},</if>
- <if test="telephone != null and telephone != ''">#{telephone},</if>
- <if test="product != null and product != ''">#{product},</if>
- <if test="enterTime != null">#{enterTime},</if>
- <if test="employeNum != null">#{employeNum},</if>
- <if test="audio != null and audio != ''">#{audio},</if>
- <if test="industryType != null">#{industryType},</if>
- <if test="floor != null">#{floor},</if>
- <if test="houseTypeId != null">#{houseTypeId},</if>
- <if test="parkId != null">#{parkId},</if>
- </trim>
- </insert>
- <update id="updateOrganizationInfo" parameterType="OrganizationInfo">
- update organization_info
- <trim prefix="SET" suffixOverrides=",">
- type_id = #{typeId},
- room_id = #{roomId},
- building_id = #{buildingId},
- area_id = #{areaId},
- organization_name = #{organizationName},
- intro = #{intro},
- lng_lat = #{lngLat},
- raster_lng_lat = #{rasterLngLat},
- important = #{important},
- type_name = #{typeName},
- address = #{address},
- logo = #{logo},
- telephone = #{telephone},
- product = #{product},
- enter_time = #{enterTime},
- employe_num = #{employeNum},
- audio = #{audio},
- industry_type = #{industryType},
- floor = #{floor},
- house_type_id = #{houseTypeId},
- park_id = #{parkId}
- </trim>
- where organization_id = #{organizationId}
- </update>
- <delete id="deleteOrganizationInfoByOrganizationId" parameterType="Integer">
- delete from organization_info where organization_id = #{organizationId}
- </delete>
- <delete id="deleteOrganizationInfoByOrganizationIds" parameterType="String">
- delete from organization_info where organization_id in
- <foreach item="organizationId" collection="array" open="(" separator="," close=")">
- #{organizationId}
- </foreach>
- </delete>
- </mapper>
|