package com.lunhan.water.entity.request.rechargerecords; import lombok.Data; import java.math.BigDecimal; @Data public class Recharge { /** * 订单金额 */ private BigDecimal orderAmount; /** * 折扣金额 */ private BigDecimal discountAmount; /** * 充值金额 */ private BigDecimal rechargeAmount; /** * *备注 */ private String remark; }