| | |
| | | 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 selectSystemProfitByState(@Param("state") int stateOut); |
| | |
| | | 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); |
| | | } |