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 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 getIds() { return ids; } public void setIds(List ids) { this.ids = ids; } }