78 lines
3.0 KiB
XML
78 lines
3.0 KiB
XML
<?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.gxwebsoft.tower.mapper.TowerPlaceSafetyMapper">
|
|
|
|
<!-- 关联查询sql -->
|
|
<sql id="selectSql">
|
|
SELECT a.*
|
|
FROM tower_place_safety a
|
|
<where>
|
|
<if test="param.placeSafetyId != null">
|
|
AND a.place_safety_id = #{param.placeSafetyId}
|
|
</if>
|
|
<if test="param.placeCode != null">
|
|
AND a.place_code LIKE CONCAT('%', #{param.placeCode}, '%')
|
|
</if>
|
|
<if test="param.equipmentType != null">
|
|
AND a.equipment_type LIKE CONCAT('%', #{param.equipmentType}, '%')
|
|
</if>
|
|
<if test="param.name != null">
|
|
AND a.name LIKE CONCAT('%', #{param.name}, '%')
|
|
</if>
|
|
<if test="param.checkStandard != null">
|
|
AND a.check_standard LIKE CONCAT('%', #{param.checkStandard}, '%')
|
|
</if>
|
|
<if test="param.type != null">
|
|
AND a.type LIKE CONCAT('%', #{param.type}, '%')
|
|
</if>
|
|
<if test="param.pushSystem != null">
|
|
AND a.push_system LIKE CONCAT('%', #{param.pushSystem}, '%')
|
|
</if>
|
|
<if test="param.otherParam != null">
|
|
AND a.other_param LIKE CONCAT('%', #{param.otherParam}, '%')
|
|
</if>
|
|
<if test="param.files != null">
|
|
AND a.files LIKE CONCAT('%', #{param.files}, '%')
|
|
</if>
|
|
<if test="param.isShow != null">
|
|
AND a.is_show = #{param.isShow}
|
|
</if>
|
|
<if test="param.userId != null">
|
|
AND a.user_id = #{param.userId}
|
|
</if>
|
|
<if test="param.sortNumber != null">
|
|
AND a.sort_number = #{param.sortNumber}
|
|
</if>
|
|
<if test="param.comments != null">
|
|
AND a.comments LIKE CONCAT('%', #{param.comments}, '%')
|
|
</if>
|
|
<if test="param.status != null">
|
|
AND a.status = #{param.status}
|
|
</if>
|
|
<if test="param.deleted != null">
|
|
AND a.deleted = #{param.deleted}
|
|
</if>
|
|
<if test="param.deleted == null">
|
|
AND a.deleted = 0
|
|
</if>
|
|
<if test="param.createTimeStart != null">
|
|
AND a.create_time >= #{param.createTimeStart}
|
|
</if>
|
|
<if test="param.createTimeEnd != null">
|
|
AND a.create_time <= #{param.createTimeEnd}
|
|
</if>
|
|
</where>
|
|
</sql>
|
|
|
|
<!-- 分页查询 -->
|
|
<select id="selectPageRel" resultType="com.gxwebsoft.tower.entity.TowerPlaceSafety">
|
|
<include refid="selectSql"></include>
|
|
</select>
|
|
|
|
<!-- 查询全部 -->
|
|
<select id="selectListRel" resultType="com.gxwebsoft.tower.entity.TowerPlaceSafety">
|
|
<include refid="selectSql"></include>
|
|
</select>
|
|
|
|
</mapper>
|