package cc.mrbird.febs.dapp.mapper; import cc.mrbird.febs.dapp.entity.DappSystemProfit; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; public interface DappSystemProfitDao extends BaseMapper { DappSystemProfit selectSystemProfitByState(@Param("state") int stateOut); DappSystemProfit selectByIdForUpdate(@Param("id") Long id,@Param("state") int stateOut); }