|
|
|
@ -12,7 +12,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
|
<result property="address" column="address" /> |
|
|
|
|
<result property="accuracy" column="accuracy" /> |
|
|
|
|
<result property="dimension" column="dimension" /> |
|
|
|
|
<result property="isOrgan" column="is_organ" /> |
|
|
|
|
<result property="organ" column="is_organ" /> |
|
|
|
|
<result property="contactPerson" column="contact_person" /> |
|
|
|
|
<result property="contactNumber" column="contact_number" /> |
|
|
|
|
<result property="websiteUrl" column="website_url" /> |
|
|
|
@ -34,7 +34,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
|
<result property="address" column="address" /> |
|
|
|
|
<result property="accuracy" column="accuracy" /> |
|
|
|
|
<result property="dimension" column="dimension" /> |
|
|
|
|
<result property="isOrgan" column="is_organ" /> |
|
|
|
|
<result property="organ" column="is_organ" /> |
|
|
|
|
<result property="contactPerson" column="contact_person" /> |
|
|
|
|
<result property="contactNumber" column="contact_number" /> |
|
|
|
|
<result property="websiteUrl" column="website_url" /> |
|
|
|
@ -77,7 +77,7 @@ order by e.id desc |
|
|
|
|
<if test="address != null">address,</if> |
|
|
|
|
<if test="accuracy != null">accuracy,</if> |
|
|
|
|
<if test="dimension != null">dimension,</if> |
|
|
|
|
<if test="isOrgan != null">is_organ,</if> |
|
|
|
|
<if test="organ != null">is_organ,</if> |
|
|
|
|
<if test="contactPerson != null">contact_person,</if> |
|
|
|
|
<if test="contactNumber != null">contact_number,</if> |
|
|
|
|
<if test="websiteUrl != null">website_url,</if> |
|
|
|
@ -99,7 +99,7 @@ order by e.id desc |
|
|
|
|
<if test="address != null">#{address},</if> |
|
|
|
|
<if test="accuracy != null">#{accuracy},</if> |
|
|
|
|
<if test="dimension != null">#{dimension},</if> |
|
|
|
|
<if test="isOrgan != null">#{isOrgan},</if> |
|
|
|
|
<if test="organ != null">#{organ},</if> |
|
|
|
|
<if test="contactPerson != null">#{contactPerson},</if> |
|
|
|
|
<if test="contactNumber != null">#{contactNumber},</if> |
|
|
|
|
<if test="websiteUrl != null">#{websiteUrl},</if> |
|
|
|
@ -125,7 +125,7 @@ order by e.id desc |
|
|
|
|
<if test="address != null">address = #{address},</if> |
|
|
|
|
<if test="accuracy != null">accuracy = #{accuracy},</if> |
|
|
|
|
<if test="dimension != null">dimension = #{dimension},</if> |
|
|
|
|
<if test="isOrgan != null">is_organ = #{isOrgan},</if> |
|
|
|
|
<if test="organ != null">is_organ = #{organ},</if> |
|
|
|
|
<if test="contactPerson != null">contact_person = #{contactPerson},</if> |
|
|
|
|
<if test="contactNumber != null">contact_number = #{contactNumber},</if> |
|
|
|
|
<if test="websiteUrl != null">website_url = #{websiteUrl},</if> |
|
|
|
|