RationOldUserInfo.java 1.74 KB
package com.cjs.cms.model.ration;

import java.util.Date;

import org.springframework.format.annotation.DateTimeFormat;

import com.cjs.cms.model.BaseInfo;

/**
 * 再托管配售机构用户配置
 * @author tongxiaochuan
 *
 */
public class RationOldUserInfo extends BaseInfo {

    private static final long serialVersionUID = 1L;

    private Integer id;
    private Integer rationOldConfigId; //再托管规则编号
    private String  userId;            //用户编号
    private String  otcAccount;        //股权账号
    private Double  percent;           //
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date    createAt;
    private String  createBy;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getRationOldConfigId() {
        return rationOldConfigId;
    }

    public void setRationOldConfigId(Integer rationOldConfigId) {
        this.rationOldConfigId = rationOldConfigId;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public String getOtcAccount() {
        return otcAccount;
    }

    public void setOtcAccount(String otcAccount) {
        this.otcAccount = otcAccount;
    }

    public Double getPercent() {
        return percent;
    }

    public void setPercent(Double percent) {
        this.percent = percent;
    }

    public Date getCreateAt() {
        return createAt;
    }

    public void setCreateAt(Date createAt) {
        this.createAt = createAt;
    }

    public String getCreateBy() {
        return createBy;
    }

    public void setCreateBy(String createBy) {
        this.createBy = createBy;
    }

}