余额列表接口

This commit is contained in:
张松
2025-09-26 14:26:36 +08:00
parent a4d36a470c
commit c5b3cfeb72
4 changed files with 56 additions and 0 deletions

View File

@@ -25,4 +25,7 @@ public interface MkShopRechargeService extends IService<MkShopRecharge> {
BigDecimal checkRecharge(Long mainShopId, @NotNull(message = "店铺不能为空") Long shopId, Long userId, Long rechargeDetailId, @DecimalMin("0.01") BigDecimal money);
void recharge(Long shopId, Long shopUserId, Long relatedId, BigDecimal amount, Long paymentId, String payType, ShopUserFlowBizEnum bizEnum);
Object getList(long loginIdAsLong);
}

View File

@@ -0,0 +1,27 @@
package com.czg.market.vo;
import lombok.Data;
import lombok.experimental.Accessors;
import java.math.BigDecimal;
@Data
@Accessors(chain = true)
public class RechargeListVO {
/**
* 店铺id
*/
private Long shopId;
/**
* 店铺名称
*/
private String shopName;
/**
* 金额
*/
private BigDecimal amount;
/**
* 店铺logo
*/
private String logo;
}