lizijie
2019-07-10 e97c393e23f4c015a44b5fef5fd26ae288bc6c0f
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;// 维度值
}