Commit 495d133a by Water Wang

optimize

parent 14e45a0c
...@@ -3,11 +3,20 @@ package com.yd.api.agms.vo.statistics; ...@@ -3,11 +3,20 @@ package com.yd.api.agms.vo.statistics;
import com.github.pagehelper.PageInfo; import com.github.pagehelper.PageInfo;
public class LeadsStatisticsRequestVO { public class LeadsStatisticsRequestVO {
private String leadsDateSpan; private Integer isStatement;//0=非报表,1=报表
private String leadsDateSpan;//null:全部,0:今天,1:昨天,
private Integer leadsStatus; // 0/null:全部,1:未派遣,2:已派遣 private Integer leadsStatus; // 0/null:全部,1:未派遣,2:已派遣
private Integer expertApplyStatus; // 0/null:全部,1:未申请,2:申请中,3:已指派, private Integer expertApplyStatus; // 0/null:全部,1:未申请,2:申请中,3:已指派,
private PageInfo<LeadsStatisticsInfo> pageInfo; private PageInfo<LeadsStatisticsInfo> pageInfo;
public Integer getIsStatement() {
return isStatement;
}
public void setIsStatement(Integer isStatement) {
this.isStatement = isStatement;
}
public String getLeadsDateSpan() { public String getLeadsDateSpan() {
return leadsDateSpan; return leadsDateSpan;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment