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.

49 lines
1.1 KiB

package com.community.pocket.entity.vo.android;
/**
* 活动贴
*/
public class ActiveVo extends ForumVo {
//报名截止日期
private String registrationDeadline;
//活动开始时间
private String activeStartTime;
//活动结束时间
private String activeEndTime;
//活动信用分
private Integer activeScore;
public String getRegistrationDeadline() {
return registrationDeadline;
}
public void setRegistrationDeadline(String registrationDeadline) {
this.registrationDeadline = registrationDeadline;
}
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 Integer getActiveScore() {
return activeScore;
}
public void setActiveScore(Integer activeScore) {
this.activeScore = activeScore;
}
}