package com.mzl.flower.service.wallet;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
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 java.math.BigDecimal;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author @TaoJie
|
* @since 2024-10-22
|
*/
|
public interface WalletReduceService {
|
|
|
Page<WalletReduceVO> getPage(Page page, QueryWalletReduceDTO dto);
|
|
/**
|
* 获取质检扣款钱(缺货补货)
|
* @param queryWalletAmountDTO
|
* @return
|
*/
|
BigDecimal getCheckLackReplaceAmount(QueryWalletAmountDTO queryWalletAmountDTO);
|
|
/**
|
* 获取售后质检扣款钱
|
* @param queryWalletAmountDTO
|
* @return
|
*/
|
BigDecimal getSaleReduceAmount(QueryWalletAmountDTO queryWalletAmountDTO);
|
|
/**
|
* 获取集货站扣款数量
|
* @param queryWalletAmountDTO
|
* @return
|
*/
|
BigDecimal getStationFeeAmount(QueryWalletAmountDTO queryWalletAmountDTO);
|
|
/**
|
* 获取质检扣款钱(降级)
|
* @param queryWalletAmountDTO
|
* @return
|
*/
|
BigDecimal getCheckReduceAmount(QueryWalletAmountDTO queryWalletAmountDTO);
|
}
|