You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.5 KiB
83 lines
3.5 KiB
<?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.youlai.boot.mini.mapper.MiniStrayAnimalMapper">
|
|
|
|
<insert id="insertStrayAnimal" parameterType="com.youlai.boot.mini.model.entity.MiniStrayAnimal" useGeneratedKeys="true" keyProperty="id">
|
|
INSERT INTO mini_stray_animal
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="uuid != null">uuid,</if>
|
|
<if test="miniUserId != null">mini_user_id,</if>
|
|
<if test="animalType != null">animal_type,</if>
|
|
<if test="color != null">color,</if>
|
|
<if test="size != null">size,</if>
|
|
<if test="status != null">status,</if>
|
|
<if test="adoptedBy != null">adopted_by,</if>
|
|
<if test="adoptedAt != null">adopted_at,</if>
|
|
<if test="auditStatus != null">audit_status,</if>
|
|
|
|
<if test="province != null">province,</if>
|
|
<if test="city != null">city,</if>
|
|
<if test="district != null">district,</if>
|
|
<if test="address != null">address,</if>
|
|
|
|
<if test="gdLocationPoint != null">gd_location_point,</if>
|
|
<if test="wgs84LocationPoint != null">wgs84_location_point,</if>
|
|
|
|
<if test="wgs84Geohash != null">wgs84_geohash,</if>
|
|
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createTimestamp != null">create_timestamp,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
<if test="updateTime != null">update_time,</if>
|
|
<if test="updateTimestamp != null">update_timestamp,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
|
|
<if test="deleted != null">is_deleted,</if>
|
|
</trim>
|
|
|
|
<trim prefix="VALUES (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="uuid != null">#{uuid},</if>
|
|
<if test="miniUserId != null">#{miniUserId},</if>
|
|
<if test="animalType != null">#{animalType},</if>
|
|
<if test="color != null">#{color},</if>
|
|
<if test="size != null">#{size},</if>
|
|
<if test="status != null">#{status},</if>
|
|
<if test="adoptedBy != null">#{adoptedBy},</if>
|
|
<if test="adoptedAt != null">#{adoptedAt},</if>
|
|
<if test="auditStatus != null">#{auditStatus},</if>
|
|
|
|
<if test="province != null">#{province},</if>
|
|
<if test="city != null">#{city},</if>
|
|
<if test="district != null">#{district},</if>
|
|
<if test="address != null">#{address},</if>
|
|
|
|
<if test="gdLocationPoint != null">
|
|
ST_GeomFromWKB(#{gdLocationPoint, typeHandler=com.youlai.boot.common.handler.PointTypeHandler}, 4326),
|
|
</if>
|
|
|
|
<if test="wgs84LocationPoint != null">
|
|
ST_GeomFromWKB(#{wgs84LocationPoint, typeHandler=com.youlai.boot.common.handler.PointTypeHandler}, 4326),
|
|
</if>
|
|
|
|
<if test="wgs84Geohash != null">#{wgs84Geohash},</if>
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createTimestamp != null">#{createTimestamp},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
<if test="updateTimestamp != null">#{updateTimestamp},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
|
|
<if test="deleted != null">#{deleted},</if>
|
|
|
|
</trim>
|
|
|
|
</insert>
|
|
|
|
</mapper>
|
|
|