吉安感知网项目-后端
xiebin
2026-01-06 d207a86cdf1ab52ef8cb7cd83bad8fceab8038cf
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
package org.sxkj.resource.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class AttachStatisticsVo {
    @ApiModelProperty(value = "机巢sn")
    private String deviceSn;
 
    @ApiModelProperty(value = "统计时间")
    private String year;
 
     @ApiModelProperty(value = "区域编码")
    private String areaCode;
     // startDate
    @ApiModelProperty(value = "开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private String startDate;
     // endDate
    @ApiModelProperty(value = "结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private String endDate;
 
    @ApiModelProperty(value = "附件类型")
    private List<Integer> resultTypeList;
 
    // job_type
    @ApiModelProperty(value = "任务类型")
    private Integer jobType;
}