All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.beecloud.bean.BCCoupon Maven / Gradle / Ivy

There is a newer version: 3.5.5
Show newest version
package cn.beecloud.bean;

/**
 * Created by sunqifs on 8/16/17.
 */
public class BCCoupon {
    private String id;
    private String template;
    private String userId;
    private String appId;
    private Integer status;
    private Long createdAt;
    private Long updatedAt;
    private Long startTime;
    private Long endTime;
    private Long useTime;

    public String getId() {
        return id;
    }

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

    public String getTemplate() {
        return template;
    }

    public void setTemplate(String template) {
        this.template = template;
    }

    public String getUserId() {
        return userId;
    }

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

    public String getAppId() {
        return appId;
    }

    public void setAppId(String appId) {
        this.appId = appId;
    }

    public Integer getStatus() {
        return status;
    }

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

    public Long getCreatedAt() {
        return createdAt;
    }

    public void setCreatedAt(Long createdAt) {
        this.createdAt = createdAt;
    }

    public Long getUpdatedAt() {
        return updatedAt;
    }

    public void setUpdatedAt(Long updatedAt) {
        this.updatedAt = updatedAt;
    }

    public Long getStartTime() {
        return startTime;
    }

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

    public Long getEndTime() {
        return endTime;
    }

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

    public Long getUseTime() {
        return useTime;
    }

    public void setUseTime(Long useTime) {
        this.useTime = useTime;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy