RationOldConfigInfo.java 3.9 KB
package com.cjs.cms.model.ration;

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

import org.springframework.format.annotation.DateTimeFormat;

import com.cjs.cms.model.BaseInfo;

public class RationOldConfigInfo extends BaseInfo {

    private static final long serialVersionUID = 1L;

    private Integer                 id;
    private String                  otcCode;         //藏品编号
    private String                  otcName;         //藏品名称
    private Double                  price;           //单个藏品价格
    private Integer                 userPercent;
    private Integer                 rationAmount;    //开放配售总量
    private Integer                 remainAmount;    //剩余申请数量
    private Integer                 maxApplyAmount;  //单个用户累计最大申请量
    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;
    private String                  rationResult;
    private Date                    createAt;
    private String                  createBy;
    private List<RationOldUserInfo> 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 Double getPrice() {
        return price;
    }

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

    public Integer getUserPercent() {
        return userPercent;
    }

    public void setUserPercent(Integer userPercent) {
        this.userPercent = userPercent;
    }

    public Integer getRationAmount() {
        return rationAmount;
    }

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

    public Integer getRemainAmount() {
        return remainAmount;
    }

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

    public Integer getMaxApplyAmount() {
        return maxApplyAmount;
    }

    public void setMaxApplyAmount(Integer maxApplyAmount) {
        this.maxApplyAmount = maxApplyAmount;
    }

    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 List<RationOldUserInfo> getUsers() {
        return users;
    }

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

}