xiaoyong931011
2022-12-01 9b3a67db63c2a51c1e97501b9e73f792a5f55bf8
src/main/resources/mapper/dapp/DappSystemProfitDao.xml
@@ -19,4 +19,40 @@
        for update
    </select>
    <update id="updateLevelProfitById">
        update dapp_system_profit
        set level_Profit = #{levelProfit}
        where id = #{id}
    </update>
    <update id="updateStateById">
        update dapp_system_profit
        set state = #{state}
        where id = #{id}
    </update>
    <select id="selectByMemberIdAndState" resultType="cc.mrbird.febs.dapp.entity.DappSystemProfit">
        select a.*
        from dapp_system_profit a
        where state = #{state}
        and member_id = #{memberId}
            limit 1
    </select>
    <select id="selectSystemProfitOutByState" resultType="cc.mrbird.febs.dapp.entity.DappSystemProfit">
        select a.*
        from dapp_system_profit a
        where state = #{state}
        order by id desc
            limit 1
    </select>
    <select id="selectSystemProfitInByState" resultType="cc.mrbird.febs.dapp.entity.DappSystemProfit">
        select a.*
        from dapp_system_profit a
        where state = #{state}
        order by id ASC
            limit 1
    </select>
</mapper>