郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
    }
}