智慧农业后台管理
guoshilong
2022-10-15 97da879dc16dffb2fbcc7447dee7db819049fa02
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.springblade.modules.traceability.dto;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author zhongrj
 */
@Data
public class SweepRecordStatisticDTO implements Serializable {
    /**
     * 日期
     */
    private String time;
 
    /**
     * 数量
     */
    private Integer num;
 
}