余额列表接口

This commit is contained in:
张松
2025-09-26 14:27:33 +08:00
parent c5b3cfeb72
commit 25a7ac1f68
3 changed files with 8 additions and 5 deletions

View File

@@ -3,12 +3,14 @@ package com.czg.market.service;
import com.czg.enums.ShopUserFlowBizEnum;
import com.czg.market.dto.MkShopRechargeDTO;
import com.czg.market.vo.MkShopRechargeVO;
import com.czg.market.vo.RechargeListVO;
import com.mybatisflex.core.service.IService;
import com.czg.market.entity.MkShopRecharge;
import jakarta.validation.constraints.DecimalMin;
import jakarta.validation.constraints.NotNull;
import java.math.BigDecimal;
import java.util.List;
/**
* 充值配置表 服务层。
@@ -26,6 +28,6 @@ public interface MkShopRechargeService extends IService<MkShopRecharge> {
void recharge(Long shopId, Long shopUserId, Long relatedId, BigDecimal amount, Long paymentId, String payType, ShopUserFlowBizEnum bizEnum);
Object getList(long loginIdAsLong);
List<RechargeListVO> getList(long loginIdAsLong);
}