Commit baaf90a7 by xiongjiangtao

社群邀请明细

parent d458bfc4
......@@ -188,6 +188,18 @@
<if test="inviteType != null">
and invite_type = #{inviteType}
</if>
<if test="addMemberType != null">
and add_member_type = #{addMemberType}
</if>
<if test="inviteType != null">
and invite_type = #{inviteType}
</if>
<if test="beginTime != null">
and create_time gt #{beginTime}
</if>
<if test="inviteType != null">
and create_time lt #{endTime}
</if>
<if test="sortFiled != null">
order by #{sortFiled} #{sortType}
</if>
......
......@@ -163,6 +163,15 @@
<if test="memberId != null and memberId != ''">
and member_id = #{memberId}
</if>
<if test="rewardInvite != null">
and reward_invite = #{rewardInvite}
</if>
<if test="beginTime != null">
and create_time gt #{beginTime}
</if>
<if test="inviteType != null">
and create_time lt #{endTime}
</if>
order by create_time desc
</select>
</mapper>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment