济菏高速数据中心代码
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.
 
 
 
 
 

96 lines
4.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.zc.business.mapper.DcRampMapper">
<resultMap type="com.zc.business.domain.DcRamp" id="DcRampResult">
<result property="id" column="id" />
<result property="facilityId" column="facility_id" />
<result property="rampName" column="ramp_name" />
<result property="lengthMeters" column="length_meters" />
<result property="designSpeed" column="design_speed" />
<result property="rampType" column="ramp_type" />
<result property="widthMeters" column="width_meters" />
<result property="createTime" column="create_time" />
<result property="updateTime" column="update_time" />
</resultMap>
<sql id="selectDcRampVo">
select id, facility_id, ramp_name, length_meters, design_speed, ramp_type, width_meters, create_time, update_time from dc_ramp
</sql>
<select id="selectDcRampList" parameterType="DcRamp" resultMap="DcRampResult">
<include refid="selectDcRampVo"/>
<where>
<if test="facilityId != null "> and facility_id = #{facilityId}</if>
<if test="rampName != null and rampName != ''"> and ramp_name like concat('%', #{rampName}, '%')</if>
<if test="lengthMeters != null "> and length_meters = #{lengthMeters}</if>
<if test="designSpeed != null "> and design_speed = #{designSpeed}</if>
<if test="rampType != null and rampType != ''"> and ramp_type = #{rampType}</if>
<if test="widthMeters != null "> and width_meters = #{widthMeters}</if>
</where>
</select>
<select id="selectDcRampById" parameterType="Long" resultMap="DcRampResult">
<include refid="selectDcRampVo"/>
where id = #{id}
</select>
<select id="selectDcRampListAll" parameterType="Long" resultMap="DcRampResult">
<include refid="selectDcRampVo"/>
where facility_id = #{type}
</select>
<insert id="insertDcRamp" parameterType="DcRamp" useGeneratedKeys="true" keyProperty="id">
insert into dc_ramp
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="facilityId != null">facility_id,</if>
<if test="rampName != null and rampName != ''">ramp_name,</if>
<if test="lengthMeters != null">length_meters,</if>
<if test="designSpeed != null">design_speed,</if>
<if test="rampType != null">ramp_type,</if>
<if test="widthMeters != null">width_meters,</if>
<if test="createTime != null">create_time,</if>
<if test="updateTime != null">update_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="facilityId != null">#{facilityId},</if>
<if test="rampName != null and rampName != ''">#{rampName},</if>
<if test="lengthMeters != null">#{lengthMeters},</if>
<if test="designSpeed != null">#{designSpeed},</if>
<if test="rampType != null">#{rampType},</if>
<if test="widthMeters != null">#{widthMeters},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<update id="updateDcRamp" parameterType="DcRamp">
update dc_ramp
<trim prefix="SET" suffixOverrides=",">
<if test="facilityId != null">facility_id = #{facilityId},</if>
<if test="rampName != null and rampName != ''">ramp_name = #{rampName},</if>
<if test="lengthMeters != null">length_meters = #{lengthMeters},</if>
<if test="designSpeed != null">design_speed = #{designSpeed},</if>
<if test="rampType != null">ramp_type = #{rampType},</if>
<if test="widthMeters != null">width_meters = #{widthMeters},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteDcRampById" parameterType="Long">
delete from dc_ramp where id = #{id}
</delete>
<delete id="deleteDcRampByIds" parameterType="String">
delete from dc_ramp where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>