OtcTrusteeCodeInfo.java 3.78 KB
package com.cjs.site.model.user.ration;

import com.cjs.site.model.BaseInfo;

/**
 * 托管参数设置(HS_ASSET.OTCTRUSTEECODE)
 * 
 * @author tongyufu
 *
 */
public class OtcTrusteeCodeInfo extends BaseInfo {

    private static final long serialVersionUID = 1L;
    private String            otcCode;
    private String            otcName;
    private String            trusteeUnit;          //计件单位
    private String            trusteeUnitText;      //计件单位文本
    private Integer           lowAmount;            //最小托管数量
    private Double            issuePrice;           //上市价
    private Double            appraisalFare;        //鉴定费
    private Double            trusteeFare;          //上挂费
    private String            beginDate;            //开始日期
    private String            endDate;              //结束日期
    private Integer           applicableAmount;     //可托管总量
    private Integer           totalAmount;          //入库总量
    private Integer           retrust;              //再托管(0:否;1:是)
    private Integer           remainAmount;         //
    private Double            price;
    private String            remark;

    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 String getTrusteeUnit() {
        return trusteeUnit;
    }

    public void setTrusteeUnit(String trusteeUnit) {
        this.trusteeUnit = trusteeUnit;
    }

    public String getTrusteeUnitText() {
        return trusteeUnitText;
    }

    public void setTrusteeUnitText(String trusteeUnitText) {
        this.trusteeUnitText = trusteeUnitText;
    }

    public Integer getLowAmount() {
        return lowAmount;
    }

    public void setLowAmount(Integer lowAmount) {
        this.lowAmount = lowAmount;
    }

    public Double getIssuePrice() {
        return issuePrice;
    }

    public void setIssuePrice(Double issuePrice) {
        this.issuePrice = issuePrice;
    }

    public Double getAppraisalFare() {
        return appraisalFare;
    }

    public void setAppraisalFare(Double appraisalFare) {
        this.appraisalFare = appraisalFare;
    }

    public Double getTrusteeFare() {
        return trusteeFare;
    }

    public void setTrusteeFare(Double trusteeFare) {
        this.trusteeFare = trusteeFare;
    }

    public String getBeginDate() {
        return beginDate;
    }

    public void setBeginDate(String beginDate) {
        this.beginDate = beginDate;
    }

    public String getEndDate() {
        return endDate;
    }

    public void setEndDate(String endDate) {
        this.endDate = endDate;
    }

    public Integer getApplicableAmount() {
        return applicableAmount;
    }

    public void setApplicableAmount(Integer applicableAmount) {
        this.applicableAmount = applicableAmount;
    }

    public Integer getTotalAmount() {
        return totalAmount;
    }

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

    public Integer getRetrust() {
        return retrust;
    }

    public void setRetrust(Integer retrust) {
        this.retrust = retrust;
    }

    public Integer getRemainAmount() {
        return remainAmount;
    }

    public void setRemainAmount(Integer remainAmount) {
        this.remainAmount = remainAmount;
    }

    public Double getPrice() {
        return price;
    }

    public void setPrice(Double price) {
        this.price = price;
    }

    public String getRemark() {
        return remark;
    }

    public void setRemark(String remark) {
        this.remark = remark;
    }

}