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.2 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.gxwebsoft.tower.mapper.TowerPlaceMapper">
<!-- 关联查询sql -->
<sql id="selectSql">
SELECT a.*
FROM tower_place a
<where>
<if test="param.placeId != null">
AND a.place_id = #{param.placeId}
</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.standard != null">
AND a.standard LIKE CONCAT('%', #{param.standard}, '%')
</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 &gt;= #{param.createTimeStart}
</if>
<if test="param.createTimeEnd != null">
AND a.create_time &lt;= #{param.createTimeEnd}
</if>
<if test="param.keywords != null">
AND (a.equipment_type LIKE CONCAT('%', #{param.keywords}, '%')
OR a.place_code = #{param.keywords}
OR a.name #{param.keywords}
)
</if>
</where>
</sql>
<!-- 分页查询 -->
<select id="selectPageRel" resultType="com.gxwebsoft.tower.entity.TowerPlace">
<include refid="selectSql"></include>
</select>
<!-- 查询全部 -->
<select id="selectListRel" resultType="com.gxwebsoft.tower.entity.TowerPlace">
<include refid="selectSql"></include>
</select>
</mapper>