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.

39 lines
748 B

package com.community.pocket.entity.vo.android;
import com.community.pocket.entity.po.android.Token;
import java.util.Date;
/**
* 访客查询
*/
public class VisitorQuery extends Token {
private Date startDate;
private Date endDate;
private Long currentPage;
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
public Date getEndDate() {
return endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
public Long getCurrentPage() {
return currentPage;
}
public void setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
}
}