EcEntrustInfo.java 2.99 KB
package com.cjs.cms.model.entrust;

import com.cjs.cms.model.BaseInfo;

/**
 * 商品行情信息
 * 
 * @author tongyufu
 *
 */
public class EcEntrustInfo extends BaseInfo {

    private static final long serialVersionUID = 1L;
    private String            otcCode;
    private String            otcName;
    private Double            lastPrice;            //最新价
    private Double            closePrice;           //昨日收盘价
    private Double            openPrice;            //开盘价
    private Double            buyPrice;             //最高买价
    private Integer           buyAmount;            //最高买价的委买数量
    private Double            sellPrice;            //最低卖价
    private Integer           sellAmount;           //最低卖价的委卖数量
    
    private Double            ROSE;                 //涨幅
    private Double            UPS;                  //涨跌
    private Integer           businessAmount;       //成交量
    private Double            businessBalance;      //成交额
    
    
    
    
    

    public String getOtcCode() {
        return otcCode;
    }

    public void setOtcCode(String otcCode) {
        this.otcCode = otcCode;
    }

    public String getOtcName() {
        return otcName;
    }

    public void setOtcName(String otcName) {
        this.otcName = otcName;
    }

    public Double getLastPrice() {
        return lastPrice;
    }

    public void setLastPrice(Double lastPrice) {
        this.lastPrice = lastPrice;
    }

    public Double getClosePrice() {
        return closePrice;
    }

    public void setClosePrice(Double closePrice) {
        this.closePrice = closePrice;
    }

    public Double getOpenPrice() {
        return openPrice;
    }

    public void setOpenPrice(Double openPrice) {
        this.openPrice = openPrice;
    }

    public Double getBuyPrice() {
        return buyPrice;
    }

    public void setBuyPrice(Double buyPrice) {
        this.buyPrice = buyPrice;
    }

    public Integer getBuyAmount() {
        return buyAmount;
    }

    public void setBuyAmount(Integer buyAmount) {
        this.buyAmount = buyAmount;
    }

    public Double getSellPrice() {
        return sellPrice;
    }

    public void setSellPrice(Double sellPrice) {
        this.sellPrice = sellPrice;
    }

    public Integer getSellAmount() {
        return sellAmount;
    }

    public void setSellAmount(Integer sellAmount) {
        this.sellAmount = sellAmount;
    }

	public Double getROSE() {
		return ROSE;
	}

	public void setROSE(Double rOSE) {
		ROSE = rOSE;
	}

	public Double getUPS() {
		return UPS;
	}

	public void setUPS(Double uPS) {
		UPS = uPS;
	}

	public Integer getBusinessAmount() {
		return businessAmount;
	}

	public void setBusinessAmount(Integer businessAmount) {
		this.businessAmount = businessAmount;
	}

	public Double getBusinessBalance() {
		return businessBalance;
	}

	public void setBusinessBalance(Double businessBalance) {
		this.businessBalance = businessBalance;
	}
    
    
    

}