package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
public class FreeSingleTicket implements Serializable {
|
|
private boolean isSelected;
|
@Expose
|
private String couponName;
|
@Expose
|
private String couponPicture;
|
@Expose
|
private String couponEffect;
|
@Expose
|
private String couponRule;
|
@Expose
|
private String couponTerm;
|
@Expose
|
private String id;
|
@Expose
|
private String source;
|
@Expose
|
private int state;
|
@Expose
|
private int sourceType;
|
@Expose
|
private TextColorSet remainDays;
|
|
public boolean isSelected() {
|
return isSelected;
|
}
|
|
public void setSelected(boolean selected) {
|
isSelected = selected;
|
}
|
|
public String getCouponName() {
|
return couponName;
|
}
|
|
public void setCouponName(String couponName) {
|
this.couponName = couponName;
|
}
|
|
public String getCouponPicture() {
|
return couponPicture;
|
}
|
|
public void setCouponPicture(String couponPicture) {
|
this.couponPicture = couponPicture;
|
}
|
|
public String getCouponEffect() {
|
return couponEffect;
|
}
|
|
public void setCouponEffect(String couponEffect) {
|
this.couponEffect = couponEffect;
|
}
|
|
public String getCouponTerm() {
|
return couponTerm;
|
}
|
|
public void setCouponTerm(String couponTerm) {
|
this.couponTerm = couponTerm;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getSource() {
|
return source;
|
}
|
|
public void setSource(String source) {
|
this.source = source;
|
}
|
|
public TextColorSet getRemainDays() {
|
return remainDays;
|
}
|
|
public void setRemainDays(TextColorSet remainDays) {
|
this.remainDays = remainDays;
|
}
|
|
public String getCouponRule() {
|
return couponRule;
|
}
|
|
public void setCouponRule(String couponRule) {
|
this.couponRule = couponRule;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
|
public int getSourceType() {
|
return sourceType;
|
}
|
|
public void setSourceType(int sourceType) {
|
this.sourceType = sourceType;
|
}
|
}
|