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";
|
}
|