package org.sxkj.resource.vo; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data public class AttachTypeStatisticsVO { @ApiModelProperty(value = "附件类型 0图片,1=视频,2=ai,3=三维,4=正射,5=全景, 6=图片压缩小,7=图片压缩中,8视频一帧图,9视频压缩,10ai压缩小,11ai压缩中") private String type; @ApiModelProperty(value = "附件数量") private Double count = 0d; @ApiModelProperty(value = "时间") private String timeStr; // 面积 @ApiModelProperty(value = "面积") private Double area; @ApiModelProperty(value = "area_code") private String areaCode; }