202 lines
10 KiB
XML
202 lines
10 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.ruoyi.busi.mapper.BusiNoticeMapper">
|
|
|
|
|
|
<select id="queryListPage" resultType="com.ruoyi.busi.vo.BusiNoticeVo">
|
|
select main.id, main.user_id, main.title, main.platform_code, main.province, main.city, main.fee_down, main.fee_up, main.is_self_price, main.gift_detail,
|
|
main.gift_price, main.end_date, main.brand, main.is_show_brand, main.need_num, main.fans_down, main.fans_up, main.is_eligible, main.pic, main.collect, main.detail, main.images,
|
|
main.blogger_types, main.is_show_tel, main.wechat, main.tel, main.group_image, main.is_use_coupon, main.approval_status, main.approval_user_id, main.approval_time,
|
|
main.approval_remark, main.creator, main.create_time, main.updater, main.update_time, main.del_flag,
|
|
uTable.nick_name as userNickName,auditTable.nick_name as approvalUserName,ifnull(noticeView.view_num,0) as viewNum,
|
|
bTable.title as platformName
|
|
from dl_busi_notice main
|
|
left join sys_user uTable on main.user_id = uTable.user_id
|
|
left join sys_user auditTable on main.approval_user_id = auditTable.user_id
|
|
left join dl_base_category bTable on main.platform_code = bTable.code
|
|
left join dl_busi_notice_view noticeView on noticeView.id = main.id
|
|
<where>
|
|
main.del_flag = '0' and main.approval_status != 8
|
|
<if test="entity.userNickName != null "> and uTable.nick_name like concat('%', #{entity.userNickName}, '%')</if>
|
|
<if test="entity.userId != null "> and main.user_id = #{entity.userId}</if>
|
|
<if test="entity.province != null "> and main.province = #{entity.province}</if>
|
|
<if test="entity.city != null "> and main.city = #{entity.city}</if>
|
|
<if test="entity.title != null and entity.title != ''"> and main.title like concat('%', #{entity.title}, '%')</if>
|
|
<if test="entity.platformCode != null and entity.platformCode != ''"> and main.platform_code = #{entity.platformCode}</if>
|
|
|
|
<if test="entity.params.beginFeeDown != null and entity.params.beginFeeDown != ''">
|
|
and main.fee_down <![CDATA[>= ]]> #{entity.params.beginFeeDown}
|
|
</if>
|
|
<if test=" entity.params.endFeeDown != null and entity.params.endFeeDown != ''">
|
|
and main.fee_down <![CDATA[<= ]]> #{entity.params.endFeeDown}
|
|
</if>
|
|
|
|
<if test="entity.params.beginFansDown != null and entity.params.beginFansDown != ''">
|
|
and main.fans_down <![CDATA[>= ]]> #{entity.params.beginFansDown}
|
|
</if>
|
|
<if test=" entity.params.endFansDown != null and entity.params.endFansDown != ''">
|
|
and main.fans_down <![CDATA[<= ]]> #{entity.params.endFansDown}
|
|
</if>
|
|
<if test="entity.brand != null and entity.brand != ''"> and main.brand like concat('%', #{entity.brand}, '%')</if>
|
|
<if test="entity.pic != null and entity.pic != ''"> and main.pic = #{entity.pic}</if>
|
|
<if test="entity.collect != null and entity.collect != ''"> and main.collect = #{entity.collect}</if>
|
|
<if test="entity.bloggerTypes != null and entity.bloggerTypes != ''"> and main.blogger_types = #{entity.bloggerTypes}</if>
|
|
<if test="entity.isUseCoupon != null "> and main.is_use_coupon = #{entity.isUseCoupon}</if>
|
|
<if test="entity.approvalStatus != null and entity.approvalStatus != ''"> and main.approval_status = #{entity.approvalStatus}</if>
|
|
<if test="entity.params.beginCreateTime != null and entity.params.beginCreateTime != '' and entity.params.endCreateTime != null and entity.params.endCreateTime != ''"> and main.create_time between #{entity.params.beginCreateTime} and #{entity.params.endCreateTime}</if>
|
|
</where>
|
|
order by FIELD(main.approval_status,0,1,9,2) asc, main.create_time desc
|
|
</select>
|
|
<select id="queryListByUserId" resultType="com.ruoyi.busi.vo.BusiNoticeVo">
|
|
SELECT
|
|
main.*,
|
|
dbns.status,
|
|
dbns.is_super
|
|
FROM
|
|
dl_busi_notice main
|
|
LEFT JOIN dl_busi_notice_sign dbns ON main.id = dbns.notice_id AND dbns.del_flag = 0
|
|
WHERE
|
|
dbns.user_id = #{userId}
|
|
order by dbns.create_time desc
|
|
</select>
|
|
<select id="queryAppListPage" resultType="com.ruoyi.busi.vo.BusiNoticeVo">
|
|
SELECT
|
|
dbn.*,
|
|
dbnv.view_num AS viewNum,
|
|
su.avatar,
|
|
su.nick_name AS userNickName
|
|
FROM
|
|
dl_busi_notice dbn
|
|
LEFT JOIN dl_busi_notice_view dbnv ON dbn.id = dbnv.id
|
|
LEFT JOIN sys_user su ON dbn.user_id = su.user_id
|
|
WHERE
|
|
dbn.del_flag = 0
|
|
AND (dbn.approval_status = '1')
|
|
<if test="entity.gift!=null and entity.gift!=''">
|
|
AND ( dbn.gift_detail IS NOT NULL AND dbn.gift_detail != '' )
|
|
</if>
|
|
<if test="entity.platformCode!=null and entity.platformCode!=''">
|
|
AND ( dbn.platform_code =#{entity.platformCode} )
|
|
</if>
|
|
<if test="entity.bloggerType!=null and entity.bloggerType!=''">
|
|
AND ( dbn.blogger_types LIKE CONCAT('%',#{entity.bloggerType},'%') )
|
|
</if>
|
|
<if test="entity.searchValue!=null and entity.searchValue!=''">
|
|
AND ( dbn.title LIKE CONCAT('%',#{entity.searchValue},'%') OR
|
|
dbn.detail LIKE CONCAT('%',#{entity.searchValue},'%') )
|
|
</if>
|
|
<if test="entity.rewardType=='money'">
|
|
AND ( dbn.fee_down IS NOT NULL OR dbn.fee_up IS NOT NULL )
|
|
</if>
|
|
<if test="entity.rewardType=='gift'">
|
|
AND ( dbn.gift_detail IS NOT NULL AND dbn.gift_detail!='' )
|
|
</if>
|
|
<if test="entity.fansUp!=null">
|
|
AND ( dbn.fans_up <=#{entity.fansUp} )
|
|
</if>
|
|
<if test="entity.fansDown!=null">
|
|
AND ( dbn.fans_up >=#{entity.fansDown} )
|
|
</if>
|
|
<if test="entity.feeUp!=null">
|
|
AND ( dbn.fee_up <=#{entity.feeUp} )
|
|
</if>
|
|
<if test="entity.feeDown!=null">
|
|
AND ( dbn.fee_down >=#{entity.feeDown} )
|
|
</if>
|
|
ORDER BY
|
|
<choose>
|
|
<when test="entity.sortBy=='new'">
|
|
-- 查最新的 --
|
|
dbn.create_time DESC
|
|
</when>
|
|
<when test="entity.sortBy=='money'">
|
|
-- 查高奖励 --
|
|
dbn.fee_up DESC
|
|
</when>
|
|
<otherwise>
|
|
-- 默认正序排列 --
|
|
dbn.create_time ASC
|
|
</otherwise>
|
|
</choose>
|
|
|
|
</select>
|
|
<select id="selectByIdVo" resultType="com.ruoyi.busi.vo.BusiNoticeVo">
|
|
select main.user_id, main.title, main.platform_code, main.province, main.city, main.fee_down, main.fee_up, main.is_self_price, main.gift_detail,
|
|
main.gift_price, main.end_date, main.brand, main.is_show_brand, main.need_num, main.fans_down, main.fans_up, main.is_eligible, main.pic, main.collect, main.detail, main.images,
|
|
main.blogger_types, main.is_show_tel, main.wechat, main.tel, main.group_image, main.is_use_coupon, main.approval_status, main.approval_user_id, main.approval_time,
|
|
main.approval_remark, main.creator, main.create_time, main.updater, main.update_time, main.del_flag,
|
|
uTable.nick_name as userNickName,ifnull(noticeView.view_num,0) as viewNum,
|
|
bTable.title as platformName
|
|
from dl_busi_notice main
|
|
left join sys_user uTable on main.user_id = uTable.user_id
|
|
left join dl_base_category bTable on main.platform_code = bTable.code
|
|
left join dl_busi_notice_view noticeView on noticeView.id = main.id
|
|
WHERE
|
|
main.id = #{noticeId}
|
|
</select>
|
|
<select id="appFootprintList" resultType="com.ruoyi.busi.vo.BusiNoticeVo">
|
|
SELECT
|
|
dbn.*,
|
|
dbnv.view_num AS viewNum,
|
|
su.avatar,
|
|
su.nick_name AS userNickName
|
|
FROM
|
|
dl_busi_notice dbn
|
|
LEFT JOIN dl_busi_notice_view dbnv ON dbn.id = dbnv.id
|
|
inner join dl_member_footprint footprint on footprint.notice_id = dbn.id and footprint.user_id = #{entity.userId}
|
|
LEFT JOIN sys_user su ON dbn.user_id = su.user_id
|
|
WHERE
|
|
dbn.del_flag = 0
|
|
AND (dbn.approval_status = '1')
|
|
<if test="entity.gift!=null and entity.gift!=''">
|
|
AND ( dbn.gift_detail IS NOT NULL AND dbn.gift_detail != '' )
|
|
</if>
|
|
<if test="entity.platformCode!=null and entity.platformCode!=''">
|
|
AND ( dbn.platform_code =#{entity.platformCode} )
|
|
</if>
|
|
<if test="entity.bloggerType!=null and entity.bloggerType!=''">
|
|
AND ( dbn.blogger_types LIKE CONCAT('%',#{entity.bloggerType},'%') )
|
|
</if>
|
|
<if test="entity.searchValue!=null and entity.searchValue!=''">
|
|
AND ( dbn.title LIKE CONCAT('%',#{entity.searchValue},'%') OR
|
|
dbn.detail LIKE CONCAT('%',#{entity.searchValue},'%') )
|
|
</if>
|
|
<if test="entity.rewardType=='money'">
|
|
AND ( dbn.fee_down IS NOT NULL OR dbn.fee_up IS NOT NULL )
|
|
</if>
|
|
<if test="entity.rewardType=='gift'">
|
|
AND ( dbn.gift_detail IS NOT NULL AND dbn.gift_detail!='' )
|
|
</if>
|
|
<if test="entity.fansUp!=null">
|
|
AND ( dbn.fans_up <=#{entity.fansUp} )
|
|
</if>
|
|
<if test="entity.fansDown!=null">
|
|
AND ( dbn.fans_up >=#{entity.fansDown} )
|
|
</if>
|
|
<if test="entity.feeUp!=null">
|
|
AND ( dbn.fee_up <=#{entity.feeUp} )
|
|
</if>
|
|
<if test="entity.feeDown!=null">
|
|
AND ( dbn.fee_down >=#{entity.feeDown} )
|
|
</if>
|
|
ORDER BY
|
|
<choose>
|
|
<when test="entity.sortBy=='new'">
|
|
-- 查最新的 --
|
|
dbn.create_time DESC
|
|
</when>
|
|
<when test="entity.sortBy=='money'">
|
|
-- 查高奖励 --
|
|
dbn.fee_up DESC
|
|
</when>
|
|
<otherwise>
|
|
-- 默认正序排列 --
|
|
dbn.create_time ASC
|
|
</otherwise>
|
|
</choose>
|
|
</select>
|
|
|
|
</mapper>
|