| | |
| | | package com.mzl.flower.service.wallet; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.mzl.flower.dto.request.wallet.QueryWalletAmountDTO; |
| | | import com.mzl.flower.dto.request.wallet.QueryWalletReduceDTO; |
| | | import com.mzl.flower.dto.response.wallet.WalletReduceVO; |
| | | import com.mzl.flower.entity.wallet.WalletDO; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | |
| | | Page<WalletReduceVO> getPage(Page page, QueryWalletReduceDTO dto); |
| | | |
| | | /** |
| | | * 获取质检扣款钱 |
| | | * 获取质检扣款钱(缺货补货) |
| | | * @param queryWalletAmountDTO |
| | | * @return |
| | | */ |
| | | BigDecimal getCheckReduceAmount(QueryWalletAmountDTO queryWalletAmountDTO); |
| | | BigDecimal getCheckLackReplaceAmount(QueryWalletAmountDTO queryWalletAmountDTO); |
| | | |
| | | /** |
| | | * 获取售后质检扣款钱 |
| | |
| | | * @return |
| | | */ |
| | | BigDecimal getStationFeeAmount(QueryWalletAmountDTO queryWalletAmountDTO); |
| | | |
| | | /** |
| | | * 获取质检扣款钱(降级) |
| | | * @param queryWalletAmountDTO |
| | | * @return |
| | | */ |
| | | BigDecimal getCheckReduceAmount(QueryWalletAmountDTO queryWalletAmountDTO); |
| | | } |