xiaoyong931011
2022-11-04 cdc27a7a63b4ff81125ec594eb23deb22bd76e21
src/main/resources/mapper/dapp/IgtOnHookPlanOrderDao.xml
@@ -98,4 +98,23 @@
        </foreach>
    </update>
    <select id="findFlowListInPage" resultType="cc.mrbird.febs.dapp.entity.DappAccountMoneyChangeEntity">
        SELECT
        a.*,
               b.username username
        FROM
        dapp_account_money_change a
        left join dapp_member b on a.member_id = b.id
        where a.order_id = #{orderId}
        order by a.create_time asc
    </select>
    <update id="updatePlanOrder">
        update igt_on_hook_plan_order
        set
            state = 3
        where
            state = 1
    </update>
</mapper>