151 lines
2.8 KiB
Java
151 lines
2.8 KiB
Java
package com.uiui.aios.bean;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class ActivityBean implements Serializable {
|
|
private static final long serialVersionUID = 8046770505423171522L;
|
|
|
|
int id;
|
|
//分类名
|
|
String type_name;
|
|
//标题
|
|
String title;
|
|
String location;
|
|
//活动时间戳 单位秒
|
|
long activity_time;
|
|
//人数
|
|
int people_num;
|
|
//语音地址
|
|
String voice;
|
|
/*用户名*/
|
|
String name;
|
|
//设备头像
|
|
String avatar;
|
|
String address;
|
|
long add_time;
|
|
String file;
|
|
int comment_count;
|
|
int like_count;
|
|
int join_num;
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getType_name() {
|
|
return type_name;
|
|
}
|
|
|
|
public void setType_name(String type_name) {
|
|
this.type_name = type_name;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
public String getLocation() {
|
|
return location;
|
|
}
|
|
|
|
public void setLocation(String location) {
|
|
this.location = location;
|
|
}
|
|
|
|
public long getActivity_time() {
|
|
return activity_time;
|
|
}
|
|
|
|
public void setActivity_time(long activity_time) {
|
|
this.activity_time = activity_time;
|
|
}
|
|
|
|
public int getPeople_num() {
|
|
return people_num;
|
|
}
|
|
|
|
public void setPeople_num(int people_num) {
|
|
this.people_num = people_num;
|
|
}
|
|
|
|
public String getVoice() {
|
|
return voice;
|
|
}
|
|
|
|
public void setVoice(String voice) {
|
|
this.voice = voice;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getAvatar() {
|
|
return avatar;
|
|
}
|
|
|
|
public void setAvatar(String avatar) {
|
|
this.avatar = avatar;
|
|
}
|
|
|
|
public String getAddress() {
|
|
return address;
|
|
}
|
|
|
|
public void setAddress(String address) {
|
|
this.address = address;
|
|
}
|
|
|
|
public long getAdd_time() {
|
|
return add_time;
|
|
}
|
|
|
|
public void setAdd_time(long add_time) {
|
|
this.add_time = add_time;
|
|
}
|
|
|
|
public String getFile() {
|
|
return file;
|
|
}
|
|
|
|
public void setFile(String file) {
|
|
this.file = file;
|
|
}
|
|
|
|
public int getComment_count() {
|
|
return comment_count;
|
|
}
|
|
|
|
public void setComment_count(int comment_count) {
|
|
this.comment_count = comment_count;
|
|
}
|
|
|
|
public int getLike_count() {
|
|
return like_count;
|
|
}
|
|
|
|
public void setLike_count(int like_count) {
|
|
this.like_count = like_count;
|
|
}
|
|
|
|
public int getJoin_num() {
|
|
return join_num;
|
|
}
|
|
|
|
public void setJoin_num(int join_num) {
|
|
this.join_num = join_num;
|
|
}
|
|
}
|