package com.tejia.lijin.app.entity.goods;
|
|
import java.util.List;
|
|
public class GoodsDetailInfo {
|
|
|
public static class HongBaoInfo {
|
private int type;
|
private String hongBaoMoney;
|
private String hongBaoDesc;
|
private String desc;
|
private String finalMoney;
|
private List<PriceInfo> priceInfoList;
|
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public String getHongBaoMoney() {
|
return hongBaoMoney;
|
}
|
|
public void setHongBaoMoney(String hongBaoMoney) {
|
this.hongBaoMoney = hongBaoMoney;
|
}
|
|
public String getHongBaoDesc() {
|
return hongBaoDesc;
|
}
|
|
public void setHongBaoDesc(String hongBaoDesc) {
|
this.hongBaoDesc = hongBaoDesc;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public String getFinalMoney() {
|
return finalMoney;
|
}
|
|
public void setFinalMoney(String finalMoney) {
|
this.finalMoney = finalMoney;
|
}
|
|
public List<PriceInfo> getPriceInfoList() {
|
return priceInfoList;
|
}
|
|
public void setPriceInfoList(List<PriceInfo> priceInfoList) {
|
this.priceInfoList = priceInfoList;
|
}
|
}
|
|
|
public static class PriceInfo {
|
private String priceName;
|
private String money;
|
|
public String getPriceName() {
|
return priceName;
|
}
|
|
public void setPriceName(String priceName) {
|
this.priceName = priceName;
|
}
|
|
public String getMoney() {
|
return money;
|
}
|
|
public void setMoney(String money) {
|
this.money = money;
|
}
|
}
|
|
|
}
|