liulin
2025-07-08 d36ad7a2138062f891000c13d9712b4706f8627c
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;
 
}