OtcStockRealInfo.java
833 Bytes
package com.cjs.site.model.quota;
import com.cjs.site.model.BaseInfo;
/**
* 用户有效持仓
* @author tongxiaochuan
*
*/
public class OtcStockRealInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private String otcCode;
private String fundAccount;
private Integer enableAmount;
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;
}
}