xiaoyong931011
2023-07-23 61bbe73c538fa51544a21b73fb2b0ad64e2b5973
src/main/java/cc/mrbird/febs/dapp/mapper/DappSystemProfitDao.java
@@ -8,6 +8,8 @@
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);
@@ -27,4 +29,8 @@
    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);
}