74 lines
1.4 KiB
Java
74 lines
1.4 KiB
Java
package com.shayu.onetoone.bean;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import com.yunbao.common.bean.BaseModel;
|
|
|
|
public class ExchangeModel extends BaseModel {
|
|
|
|
@SerializedName("top")
|
|
private String top;
|
|
@SerializedName("name")
|
|
private String name;
|
|
@SerializedName("title")
|
|
private String title;
|
|
@SerializedName("num")
|
|
private String num;
|
|
@SerializedName("sum")
|
|
private String sum;
|
|
|
|
private boolean select = false;
|
|
|
|
public boolean isSelect() {
|
|
return select;
|
|
}
|
|
|
|
public ExchangeModel setSelect(boolean select) {
|
|
this.select = select;
|
|
return this;
|
|
}
|
|
|
|
public String getSum() {
|
|
return sum;
|
|
}
|
|
|
|
public void setSum(String sum) {
|
|
this.sum = sum;
|
|
}
|
|
|
|
public String getTop() {
|
|
return top;
|
|
}
|
|
|
|
public ExchangeModel setTop(String top) {
|
|
this.top = top;
|
|
return this;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public ExchangeModel setName(String name) {
|
|
this.name = name;
|
|
return this;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public ExchangeModel setTitle(String title) {
|
|
this.title = title;
|
|
return this;
|
|
}
|
|
|
|
public String getNum() {
|
|
return num;
|
|
}
|
|
|
|
public ExchangeModel setNum(String num) {
|
|
this.num = num;
|
|
return this;
|
|
}
|
|
}
|