package com.txsc.supplier.bean; import java.io.Serializable; import java.util.List; public class QuotaGoodsBean { /** * 报价商品信息 * * @author linshao * * @data 2015年4月29日 * */ private String TGoodsID; private String GoodsName; private List<bean> PropertyCaptionList; public String getTGoodsID() { return TGoodsID; } public void setTGoodsID(String tGoodsID) { TGoodsID = tGoodsID; } public String getGoodsName() { return GoodsName; } public void setGoodsName(String goodsName) { GoodsName = goodsName; } public List<bean> getPropertyCaptionList() { return PropertyCaptionList; } public void setPropertyCaptionList(List<bean> propertyCaptionList) { PropertyCaptionList = propertyCaptionList; } public class bean implements Serializable { private String TGoodsPropertyID; private String PropertyCaption; private String QuotePrice; private String PriceSale; private String PriceCost; public String getPriceSale() { return PriceSale; } public void setPriceSale(String priceSale) { PriceSale = priceSale; } public String getPriceCost() { return PriceCost; } public void setPriceCost(String priceCost) { PriceCost = priceCost; } public String getTGoodsPropertyID() { return TGoodsPropertyID; } public void setTGoodsPropertyID(String tGoodsPropertyID) { TGoodsPropertyID = tGoodsPropertyID; } public String getPropertyCaption() { return PropertyCaption; } public void setPropertyCaption(String propertyCaption) { PropertyCaption = propertyCaption; } public String getQuotePrice() { return QuotePrice; } public void setQuotePrice(String quotePrice) { QuotePrice = quotePrice; } } }