ZhuDongming
2019-10-18 a73c63037e6a5276ce6442873afc627e8cb2c9b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.moral.entity.charts;
 
import lombok.Data;
 
import java.util.Date;
 
@Data
public class DataCondition {
      private TimeUnits timeUnits;//单位
      private Integer actualTime;//实际时间
      private AreaRange areaRange;//区域范围
      private Integer areaRangeId;//区域范围的ID
      private DeviceDimension deviceDimension; // 维度类型
      private Object dimensionValue;// 维度值
}