liulin
2025-07-04 5e388cfb25b24a154e28b3c42143493fc77f8e56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
 
}