智慧农业后台管理
xiebin
2022-09-22 cc1239bf95ee3f1880b0b4fa462a7fd40664cfb2
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;
 
}