src/main/resources/mapper/member/MemberCoinChargeDao.xml
@@ -12,4 +12,16 @@ order by create_time desc limit 1 </select> <select id="selectAllBySymbolAndTag" resultType="com.xcong.excoin.modules.member.entity.MemberCoinChargeEntity"> select * from member_coin_charge where symbol=#{symbol} and create_time > "2020-11-25 00:00:00" <if test="tag !=null and tag != ''"> and tag = #{tag} </if> <if test="status !=null and status != ''"> and status = #{status} </if> </select> </mapper>