package com.txsc.supplier.bean; /** * * @Title: QuotaModeBean.java * * @Description: TODO 报价商品bean * * @author linshao * * @date 2015年6月5日 下午3:24:44 * * @version V1.0 */ public class QuotaModeBean { private String TGoodsID; private String TGoodsPropertyID; private String QuotePrice; public String getTGoodsID() { return TGoodsID; } public void setTGoodsID(String tGoodsID) { TGoodsID = tGoodsID; } public String getTGoodsPropertyID() { return TGoodsPropertyID; } public void setTGoodsPropertyID(String tGoodsPropertyID) { TGoodsPropertyID = tGoodsPropertyID; } public String getQuotePrice() { return QuotePrice; } public void setQuotePrice(String quotePrice) { QuotePrice = quotePrice; } public QuotaModeBean(String tGoodsID, String tGoodsPropertyID, String quotePrice) { super(); TGoodsID = tGoodsID; TGoodsPropertyID = tGoodsPropertyID; QuotePrice = quotePrice; } public QuotaModeBean() { super(); } }