EcEntrustInfo.java 1.73 KB
package com.cjs.site.model.entrust;

import com.cjs.site.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            buyPrice;             //最高买价
    private Integer           buyAmount;            //最高买价的委买数量
    private Double            sellPrice;            //最低卖价
    private Integer           sellAmount;           //最低卖价的委卖数量

    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 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;
    }

}