| | |
| | | package cc.mrbird.febs.dapp.mapper; |
| | | |
| | | import cc.mrbird.febs.dapp.entity.DappSystemProfit; |
| | | import cc.mrbird.febs.dapp.vo.AdminDappSystemProfitVo; |
| | | import cc.mrbird.febs.dapp.vo.AdminSystemProfitFlowListVo; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface DappSystemProfitDao extends BaseMapper<DappSystemProfit> { |
| | | |
| | |
| | | DappSystemProfit selectSystemProfitOutByState(@Param("state")int stateOut); |
| | | |
| | | DappSystemProfit selectSystemProfitInByState(@Param("state")int stateIn); |
| | | |
| | | IPage<AdminDappSystemProfitVo> selectSystemProfitInPage(@Param("record")DappSystemProfit dappSystemProfit, Page<AdminDappSystemProfitVo> page); |
| | | |
| | | IPage<AdminSystemProfitFlowListVo> selectSystemProfitFlowListInPage(@Param("record")DappSystemProfit dappSystemProfit, Page<AdminSystemProfitFlowListVo> page); |
| | | |
| | | List<DappSystemProfit> selectDappSysstemProfitByState(@Param("state")int stateIn); |
| | | |
| | | DappSystemProfit selectByMemberId(@Param("memberId")Long memberId); |
| | | } |