RationInviteConfigInfo.java 4.27 KB
package com.cjs.site.model.user.ration;

import java.util.Date;
import java.util.List;

import org.springframework.format.annotation.DateTimeFormat;

import com.cjs.site.model.BaseInfo;

public class RationInviteConfigInfo extends BaseInfo {

    private static final long          serialVersionUID = 1L;
    private Integer                    id;                   //自增主键
    private String                     otcCode;              //藏品代码
    private String                     otcName;              //藏品名称
    private Double                     price;                //单个藏品价格
    private Integer                    rationAmount;         //邀约配售总量
    private Integer                    agreeAmount;          //同意配售数量
    private Double                     minApply;             //单个用户最低申请比例
    private Double                     maxApply;             //单个用户最高申请比例
    private String                     noticeUrl;            //公告链接
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date                       confirmStartDate;     //开始确认配售日期
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date                       confirmEndDate;       //结束确认配售日期
    private String                     rationStatus;         //邀约状态(0:作废;1:待交割;2:交割中;3:交割成功;4:交割失败;5:邀约失败)
    private String                     rationResult;         //配售结果说明
    private Date                       createAt;             //创建时间
    private String                     createBy;             //创建人
    private List<RationInviteUserInfo> users;

    public List<RationInviteUserInfo> getUsers() {
        return users;
    }

    public void setUsers(List<RationInviteUserInfo> users) {
        this.users = users;
    }

    public Integer getId() {
        return id;
    }

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

    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 Integer getRationAmount() {
        return rationAmount;
    }

    public void setRationAmount(Integer rationAmount) {
        this.rationAmount = rationAmount;
    }

    public Integer getAgreeAmount() {
        return agreeAmount;
    }

    public void setAgreeAmount(Integer agreeAmount) {
        this.agreeAmount = agreeAmount;
    }

    public Double getMinApply() {
        return minApply;
    }

    public void setMinApply(Double minApply) {
        this.minApply = minApply;
    }

    public Double getMaxApply() {
        return maxApply;
    }

    public void setMaxApply(Double maxApply) {
        this.maxApply = maxApply;
    }

    public String getNoticeUrl() {
        return noticeUrl;
    }

    public void setNoticeUrl(String noticeUrl) {
        this.noticeUrl = noticeUrl;
    }

    public Date getConfirmStartDate() {
        return confirmStartDate;
    }

    public void setConfirmStartDate(Date confirmStartDate) {
        this.confirmStartDate = confirmStartDate;
    }

    public Date getConfirmEndDate() {
        return confirmEndDate;
    }

    public void setConfirmEndDate(Date confirmEndDate) {
        this.confirmEndDate = confirmEndDate;
    }

    public String getRationStatus() {
        return rationStatus;
    }

    public void setRationStatus(String rationStatus) {
        this.rationStatus = rationStatus;
    }

    public String getRationResult() {
        return rationResult;
    }

    public void setRationResult(String rationResult) {
        this.rationResult = rationResult;
    }

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

    public Double getPrice() {
        return price;
    }

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

}