智慧农业后台管理
guoshilong
2022-08-15 6eff17f08affd763b4acdb6d515b470691d56946
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
41
42
package org.springblade.modules.traceability.dto;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author zhongrj
 */
@Data
public class SweepRecordDTO implements Serializable {
    /**
     * 本日扫描总次数
     */
    private Integer todayNum;
 
    /**
     * 昨日扫描总次数
     */
    private Integer yesterdayNum;
 
    /**
     * 本周扫描总次数
     */
    private Integer thisWeekNum;
 
    /**
     * 去周扫描总次数
     */
    private Integer lastWeekNum;
 
    /**
     * 本月扫描总次数
     */
    private Integer thisMonthNum;
 
    /**
     * 上个月扫描总次数
     */
    private Integer lastMonthNum;
 
}