parent
d7743355f3
commit
d466e2cf6d
@ -0,0 +1,29 @@ |
|||||||
|
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; |
||||||
|
|
||||||
|
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; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue