xiaoyong931011
2023-08-08 2abf40714b49234e0111389f0651b5c5f7c22029
src/main/resources/mapper/dapp/DappFundFlowDao.xml
@@ -179,4 +179,13 @@
        where a.system_profit_id = #{record.id}
        order by a.CREATE_TIME desc
    </select>
    <select id="selectListByMemberIdAndTypeAndDate" resultType="cc.mrbird.febs.dapp.entity.DappFundFlowEntity">
        select * from dapp_fund_flow
        where
              member_id = #{memberId}
          and date_format(create_time, '%Y-%m-%d') = date_format(#{dateStr}, '%Y-%m-%d')
          and type = #{type}
          and status = 2
    </select>
</mapper>