ActivityBo.java 3.23 KB
package com.yoho.unions.shoudong.model;

import java.math.BigDecimal;

/**
 * Created by mingdan.ge on 2019/5/8.
 */
public class ActivityBo {
    private String activityName;

    private Integer type;
    private Integer extraUidType;

    private Integer needSkn;
    private Integer collage;

    private Byte isNew;

    private Integer newDays;
    private Integer uidsType;

    private BigDecimal amount;
    private BigDecimal orderAmount;

    private Integer percent;

    private Integer progress;

    private Integer startTime;

    private Integer endTime;

    private Integer createTime;

    private Integer status;

    private Integer priority;

    public String getActivityName() {
        return activityName;
    }

    public void setActivityName(String activityName) {
        this.activityName = activityName;
    }

    public Integer getType() {
        return type;
    }

    public void setType(Integer type) {
        this.type = type;
    }

    public Integer getExtraUidType() {
        return extraUidType;
    }

    public void setExtraUidType(Integer extraUidType) {
        this.extraUidType = extraUidType;
    }

    public Integer getNeedSkn() {
        return needSkn;
    }

    public void setNeedSkn(Integer needSkn) {
        this.needSkn = needSkn;
    }

    public Integer getCollage() {
        return collage;
    }

    public void setCollage(Integer collage) {
        this.collage = collage;
    }

    public Byte getIsNew() {
        return isNew;
    }

    public void setIsNew(Byte isNew) {
        this.isNew = isNew;
    }

    public Integer getNewDays() {
        return newDays;
    }

    public void setNewDays(Integer newDays) {
        this.newDays = newDays;
    }

    public Integer getUidsType() {
        return uidsType;
    }

    public void setUidsType(Integer uidsType) {
        this.uidsType = uidsType;
    }

    public BigDecimal getAmount() {
        return amount;
    }

    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }

    public BigDecimal getOrderAmount() {
        return orderAmount;
    }

    public void setOrderAmount(BigDecimal orderAmount) {
        this.orderAmount = orderAmount;
    }

    public Integer getPercent() {
        return percent;
    }

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

    public Integer getProgress() {
        return progress;
    }

    public void setProgress(Integer progress) {
        this.progress = progress;
    }

    public Integer getStartTime() {
        return startTime;
    }

    public void setStartTime(Integer startTime) {
        this.startTime = startTime;
    }

    public Integer getEndTime() {
        return endTime;
    }

    public void setEndTime(Integer endTime) {
        this.endTime = endTime;
    }

    public Integer getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Integer createTime) {
        this.createTime = createTime;
    }

    public Integer getStatus() {
        return status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }

    public Integer getPriority() {
        return priority;
    }

    public void setPriority(Integer priority) {
        this.priority = priority;
    }
}