Helius
2021-05-26 5575818556096be1dadaf5ff356b5db4c832aaa2
src/main/java/com/xcong/excoin/modules/otc/dao/OtcOrderDao.java
@@ -6,6 +6,7 @@
import com.xcong.excoin.modules.otc.entity.OtcOrder;
import com.xcong.excoin.modules.otc.vo.OrderListVo;
import org.apache.ibatis.annotations.Param;
import org.web3j.abi.datatypes.Int;
import java.math.BigDecimal;
import java.util.List;
@@ -29,4 +30,8 @@
    BigDecimal selectMemberAvgPayTime(@Param("memberId") Long memberId);
    BigDecimal selectMemberAvgCoinTime(@Param("memberId") Long memberId);
    List<OtcOrder> selectOrderListForUser(@Param("memberId") Long memberId, @Param("status") Integer status);
    BigDecimal selectOrderTotalAmount(@Param("memberId") Long memberId);
}