| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.xcong.excoin.modules.otc.entity.OtcOrder; |
| | | import com.xcong.excoin.modules.otc.vo.ChatOrderVo; |
| | | 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; |
| | |
| | | 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); |
| | | |
| | | List<ChatOrderVo> selectByMemberIdAndTargetId(@Param("memberId")Long memberId, @Param("targetId")long targetId); |
| | | |
| | | List<ChatOrderVo> selectOneByMemberIdAndTargetId(@Param("memberId")Long memberId, @Param("targetId")long targetId); |
| | | } |