You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
947 B

package com.community.pocket.data.model;
public class Active {
//帖子id
private String id;
//活动开始时间
private String activeStartTime;
//活动结束时间
private String activeEndTime;
//活动信用分
private String activeScore;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getActiveStartTime() {
return activeStartTime;
}
public void setActiveStartTime(String activeStartTime) {
this.activeStartTime = activeStartTime;
}
public String getActiveEndTime() {
return activeEndTime;
}
public void setActiveEndTime(String activeEndTime) {
this.activeEndTime = activeEndTime;
}
public String getActiveScore() {
return activeScore;
}
public void setActiveScore(String activeScore) {
this.activeScore = activeScore;
}
}