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 resultTypeList; // job_type @ApiModelProperty(value = "任务类型") private Integer jobType; }