ZhuDongming
2019-06-12 8c5ce9159aebbd2092248e4074244c7a18cab4c5
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;// 维度值
}