Files
tuanwei-java/src/main/java/com/gxwebsoft/apps/mapper/xml/BcPlanMapper.xml
南宁网宿科技 912944faea Initial commit
2023-06-03 23:56:49 +08:00

68 lines
2.5 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.apps.mapper.BcPlanMapper">
<!-- 关联查询sql -->
<sql id="selectSql">
SELECT a.*,b.nickname
FROM apps_bc_plan a
LEFT JOIN sys_user b ON a.user_id = b.user_id
<where>
<if test="param.bcPlanId != null">
AND a.bc_plan_id = #{param.bcPlanId}
</if>
<if test="param.dayTime != null">
AND a.day_time LIKE CONCAT('%', #{param.dayTime}, '%')
</if>
<if test="param.week != null">
AND a.week = #{param.week}
</if>
<if test="param.type != null">
AND a.type LIKE CONCAT('%', #{param.type}, '%')
</if>
<if test="param.expirationTime != null">
AND a.expiration_time LIKE CONCAT('%', #{param.expirationTime}, '%')
</if>
<if test="param.status != null">
AND a.status = #{param.status}
</if>
<if test="param.comments != null">
AND a.comments LIKE CONCAT('%', #{param.comments}, '%')
</if>
<if test="param.userId != null">
AND a.user_id = #{param.userId}
</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.day_time &gt;= #{param.createTimeStart}
</if>
<if test="param.createTimeEnd != null">
AND a.day_time &lt;= #{param.createTimeEnd}
</if>
<if test="param.oldTime != null">
AND a.day_time = #{param.oldTime}
</if>
<if test="param.keywords != null">
AND ( b.nickname LIKE CONCAT('%', #{param.keywords}, '%') OR a.day_time LIKE CONCAT('%', #{param.keywords}, '%') )
</if>
</where>
</sql>
<!-- 分页查询 -->
<select id="selectPageRel" resultType="com.gxwebsoft.apps.entity.BcPlan">
<include refid="selectSql"></include>
</select>
<!-- 查询全部 -->
<select id="selectListRel" resultType="com.gxwebsoft.apps.entity.BcPlan">
<include refid="selectSql"></include>
</select>
</mapper>