package com.gkhy.safePlatform.doublePrevention.repository.param;
|
|
import com.gkhy.safePlatform.doublePrevention.entity.CJReport.CJdto.Data;
|
|
import java.util.Date;
|
import java.util.List;
|
|
public class DataCountIMonthParams {
|
|
private Date startTime;
|
|
private Date endTime;
|
|
private List<Long> ids;
|
|
|
public Date getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(Date startTime) {
|
this.startTime = startTime;
|
}
|
|
public Date getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(Date endTime) {
|
this.endTime = endTime;
|
}
|
|
public List<Long> getIds() {
|
return ids;
|
}
|
|
public void setIds(List<Long> ids) {
|
this.ids = ids;
|
}
|
}
|