shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.ishop.model.response;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
import java.io.Serializable;
 
/**
 * 用户充值套餐响应对象
 * @date 2023-09-11
 */
public class RechargeItemResponse implements Serializable {
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getPrice() {
        return price;
    }
 
    public void setPrice(String price) {
        this.price = price;
    }
 
    public String getGiveMoney() {
        return giveMoney;
    }
 
    public void setGiveMoney(String giveMoney) {
        this.giveMoney = giveMoney;
    }
 
    //    @ApiModelProperty(value = "充值模板id")
    private Integer id;
 
//    @ApiModelProperty(value = "充值金额")
    private String price;
 
//    @ApiModelProperty(value = "赠送金额")
    @JsonProperty("give_money")
    private String giveMoney = "0";
}