OtcStockRealInfo.java 1.3 KB
package com.cjs.cms.model.quota;

import com.cjs.cms.model.BaseInfo;

/**
 * 用户当前有效持仓
 * @author tongxiaochuan
 *
 */
public class OtcStockRealInfo extends BaseInfo {

    private static final long serialVersionUID = 1L;
    private String            otcCode;
    private String            otcName;
    private String            fundAccount;
    private Integer           enableAmount;
    private Integer           totalAmount;          //用户当前所有持仓(包括委托未卖出的)

    public String getOtcName() {
        return otcName;
    }

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

    public String getOtcCode() {
        return otcCode;
    }

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

    public String getFundAccount() {
        return fundAccount;
    }

    public void setFundAccount(String fundAccount) {
        this.fundAccount = fundAccount;
    }

    public Integer getEnableAmount() {
        return enableAmount;
    }

    public void setEnableAmount(Integer enableAmount) {
        this.enableAmount = enableAmount;
    }

    public Integer getTotalAmount() {
        return totalAmount;
    }

    public void setTotalAmount(Integer totalAmount) {
        this.totalAmount = totalAmount;
    }

}