package com.gx.obe.step.price.beans;

/**
 * @Description: 供应商报价明细
 * @author chenxw
 */
public class SupplierPriceDetail {
	
	/**
	 * @Description: 供应商id
	 */
	private String supplierId;
	
	/**
	 * @Description: 评标价
	 */
	private String evalPrice;
	
	public String getSupplierId() {
		return supplierId;
	}
	
	public void setSupplierId(String supplierId) {
		this.supplierId = supplierId;
	}
	
	public String getEvalPrice() {
		return evalPrice;
	}
	
	public void setEvalPrice(String evalPrice) {
		this.evalPrice = evalPrice;
	}
	
}