mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-27 22:45:05 +08:00
update 查询会员余额明细添加字段
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package com.jsowell.pile.vo.uniapp;
|
||||
|
||||
import com.jsowell.common.core.page.PageResponse;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 会员钱包明细VO
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2023/7/24 14:36
|
||||
*/
|
||||
@Data
|
||||
public class MemberWalletInfoVO {
|
||||
/**
|
||||
* 会员id
|
||||
*/
|
||||
private String memberId;
|
||||
|
||||
/**
|
||||
* 当前余额
|
||||
*/
|
||||
private BigDecimal currentBalance;
|
||||
|
||||
/**
|
||||
* 总消费
|
||||
*/
|
||||
private BigDecimal totalConsumption;
|
||||
|
||||
/**
|
||||
* 分页对象list
|
||||
*/
|
||||
private PageResponse pageResponse;
|
||||
}
|
||||
Reference in New Issue
Block a user