parent
3c4aa20b44
commit
82a5f22852
@ -0,0 +1,44 @@ |
||||
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; |
||||
} |
||||
} |
@ -0,0 +1,24 @@ |
||||
package com.community.pocket.data.model; |
||||
|
||||
public class Complain { |
||||
private String id; |
||||
|
||||
//投诉人
|
||||
private String complain; |
||||
|
||||
public String getComplain() { |
||||
return complain; |
||||
} |
||||
|
||||
public void setComplain(String complain) { |
||||
this.complain = complain; |
||||
} |
||||
|
||||
public String getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(String id) { |
||||
this.id = id; |
||||
} |
||||
} |
@ -0,0 +1,10 @@ |
||||
package com.community.pocket.data.model; |
||||
|
||||
/** |
||||
* 审核状态 |
||||
*/ |
||||
public enum ForumStatus { |
||||
uncheck, |
||||
ok, |
||||
fail |
||||
} |
@ -0,0 +1,7 @@ |
||||
package com.community.pocket.data.model; |
||||
|
||||
public enum ForumType { |
||||
active, |
||||
topic, |
||||
complan |
||||
} |
@ -0,0 +1,62 @@ |
||||
package com.community.pocket.data.model; |
||||
|
||||
import java.util.List; |
||||
|
||||
//分页数据
|
||||
public class Page<T> { |
||||
//总记录数
|
||||
private Long count; |
||||
//总页数
|
||||
private Long totalPage; |
||||
//当前页数
|
||||
private Long currentPage; |
||||
//数据集合
|
||||
private List<T> list; |
||||
//分页大小
|
||||
private Integer pageSize; |
||||
|
||||
public Integer getPageSize() { |
||||
return pageSize; |
||||
} |
||||
|
||||
public Long getCount() { |
||||
return count; |
||||
} |
||||
|
||||
public Long getTotalPage() { |
||||
return totalPage; |
||||
} |
||||
|
||||
public Long getCurrentPage() { |
||||
return currentPage; |
||||
} |
||||
|
||||
public void setCurrentPage(Long currentPage) { |
||||
this.currentPage = currentPage; |
||||
} |
||||
|
||||
public List<T> getList() { |
||||
return list; |
||||
} |
||||
|
||||
public void setList(List<T> list) { |
||||
this.list = list; |
||||
} |
||||
|
||||
public void setCount(Long count) { |
||||
this.count = count; |
||||
} |
||||
|
||||
public void setTotalPage(Long totalPage) { |
||||
this.totalPage = totalPage; |
||||
} |
||||
|
||||
public void setPageSize(Integer pageSize) { |
||||
this.pageSize = pageSize; |
||||
} |
||||
|
||||
public boolean isEmpty() { |
||||
return this.count == 0; |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue