| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <?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.railway.business.baseinfo.mapper.BusSdtzMapper">
- <resultMap id="BaseResultMap" type="com.railway.business.baseinfo.domain.BusSdtz">
- <result column="id" property="id"/>
- <result column="dept_id" property="deptId"/>
- <result column="dept_name" property="deptName"/>
- <result column="line_id" property="lineId"/>
- <result column="line_name" property="lineName"/>
- <result column="station_id" property="stationId"/>
- <result column="station_name" property="stationName"/>
- <result column="sdmc" property="sdmc"/>
- <result column="lcgh" property="lcgh"/>
- <result column="start_marker" property="startMarker"/>
- <result column="end_marker" property="endMarker"/>
- <result column="center_marker" property="centerMarker"/>
- <result column="sdcd" property="sdcd"/>
- <result column="del_flag" property="delFlag"/>
- <result column="create_by" property="createBy"/>
- <result column="create_time" property="createTime"/>
- <result column="update_by" property="updateBy"/>
- <result column="update_time" property="updateTime"/>
- </resultMap>
- <sql id="Base_Column_List">
- t.id,
- v.dept_id,
- v.dept_name,
- v.line_id,
- v.line_name,
- v.station_name as station_name,
- v.station_id,
- t.sdmc,
- t.lcgh,
- t.start_marker,
- t.end_marker,
- t.center_marker,
- t.sdcd,
- t.del_flag,
- t.create_by,
- t.create_time,
- t.update_by,
- t.update_time
- </sql>
- <insert id="insert" parameterType="com.railway.business.baseinfo.domain.BusSdtz">
- <selectKey keyProperty="id" order="AFTER" resultType="Long">
- select @@IDENTITY as line_id
- </selectKey>
- INSERT INTO base_sdtz
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test='null != stationId'>
- station_id,
- </if>
- <if test='null != sdmc'>
- sdmc,
- </if>
- <if test='null != lcgh'>
- lcgh,
- </if>
- <if test='null != startMarker'>
- start_marker,
- </if>
- <if test='null != endMarker'>
- end_marker,
- </if>
- <if test='null != centerMarker'>
- center_marker,
- </if>
- <if test='null != sdcd'>
- sdcd,
- </if>
- <if test='null != delFlag'>
- del_flag,
- </if>
- <if test='null != createBy'>
- create_by,
- </if>
- <if test='null != createTime'>
- create_time,
- </if>
- <if test='null != updateBy'>
- update_by,
- </if>
- <if test='null != updateTime'>
- update_time
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test='null != stationId'>
- #{stationId},
- </if>
- <if test='null != sdmc'>
- #{sdmc},
- </if>
- <if test='null != lcgh'>
- #{lcgh},
- </if>
- <if test='null != startMarker'>
- #{startMarker},
- </if>
- <if test='null != endMarker'>
- #{endMarker},
- </if>
- <if test='null != centerMarker'>
- #{centerMarker},
- </if>
- <if test='null != sdcd'>
- #{sdcd},
- </if>
- <if test='null != delFlag'>
- #{delFlag},
- </if>
- <if test='null != createBy'>
- #{createBy},
- </if>
- <if test='null != createTime'>
- #{createTime},
- </if>
- <if test='null != updateBy'>
- #{updateBy},
- </if>
- <if test='null != updateTime'>
- #{updateTime}
- </if>
- </trim>
- </insert>
- <delete id="delete">
- UPDATE base_sdtz
- set del_flag='1'
- WHERE id = #{id}
- </delete>
- <update id="update" parameterType="com.railway.business.baseinfo.domain.BusSdtz">
- UPDATE base_sdtz
- <set>
- <if test='null != stationId'>station_id = #{stationId},</if>
- <if test='null != sdmc'>sdmc = #{sdmc},</if>
- <if test='null != lcgh'>lcgh = #{lcgh},</if>
- <if test='null != startMarker'>start_marker = #{startMarker},</if>
- <if test='null != endMarker'>end_marker = #{endMarker},</if>
- <if test='null != centerMarker'>center_marker = #{centerMarker},</if>
- <if test='null != sdcd'>sdcd = #{sdcd},</if>
- <if test='null != delFlag'>del_flag = #{delFlag},</if>
- <if test='null != updateBy'>update_by = #{updateBy},</if>
- <if test='null != updateTime'>update_time = #{updateTime}</if>
- </set>
- WHERE id = #{id}
- </update>
- <select id="getInfo" resultMap="BaseResultMap">
- SELECT
- <include refid="Base_Column_List"/>
- FROM base_sdtz t
- LEFT JOIN v_station v on t.station_id = v.dept_station_id
- WHERE t.del_flag='0' and t.id = #{id}
- </select>
- <select id="getList" resultMap="BaseResultMap">
- SELECT
- <include refid="Base_Column_List"/>
- FROM base_sdtz t
- LEFT JOIN v_station v on t.station_id = v.dept_station_id
- <where>
- t.del_flag='0'
- <if test="deptId!=null and deptId!=''">
- and v.dept_id=#{deptId}
- </if>
- <if test="lineId!=null and lineId!=''">
- and v.line_id=#{lineId}
- </if>
- <if test="stationId!=null and stationId!=''">
- and t.station_id=#{stationId}
- </if>
- <if test="sdmc!=null and sdmc!=''">
- and t.sdmc=#{sdmc}
- </if>
- <if test="lcgh!=null and lcgh!=''">
- and t.lcgh=#{lcgh}
- </if>
- <if test="startMarker!=null and startMarker!=''">
- and t.start_marker=#{startMarker}
- </if>
- <if test="endMarker!=null and endMarker!=''">
- and t.end_marker=#{endMarker}
- </if>
- <if test="centerMarker!=null and centerMarker!=''">
- and t.center_marker=#{centerMarker}
- </if>
- <if test="sdcd!=null and sdcd!=''">
- and t.sdcd=#{sdcd}
- </if>
- <if test="delFlag!=null and delFlag!=''">
- and t.del_flag=#{delFlag}
- </if>
- <if test="createBy!=null and createBy!=''">
- and t.create_by=#{createBy}
- </if>
- <if test="createTime!=null and createTime!=''">
- and t.create_time=#{createTime}
- </if>
- <if test="updateBy!=null and updateBy!=''">
- and t.update_by=#{updateBy}
- </if>
- <if test="updateTime!=null and updateTime!=''">
- and t.update_time=#{updateTime}
- </if>
- </where>
- </select>
- <select id="smartQuery" resultMap="BaseResultMap">
- SELECT
- <include refid="Base_Column_List"/>
- FROM from base_sdtz t
- LEFT JOIN v_station v on t.station_id = v.dept_station_id
- <where>
- t.del_flag='0'
- <if test="deptId!=null and deptId!=''">
- and v.dept_id=#{deptId}
- </if>
- <if test="lineId!=null and lineId!=''">
- and v.line_id=#{lineId}
- </if>
- <if test="stationId!=null and stationId!=''">
- and t.station_id=#{stationId}
- </if>
- <if test="marker!=null and marker!=''">
- AND (
- (#{marker} + 0.0) - (#{pillarArea} + 0.0) BETWEEN (t.startMarker + 0.0) and (t.endMarker + 0.0)
- or
- (#{marker} + 0.0) + (#{pillarArea} + 0.0) BETWEEN (t.startMarker + 0.0) and (t.endMarker + 0.0)
- )
- </if>
- </where>
- </select>
- </mapper>
|