liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.dingzhuo.energy.data.model.domain;
 
import com.dingzhuo.energy.common.utils.time.TimeType;
 
public class CalcPeriod {
 
  private String name;
  private TimeType timeType;
  private CalcType calcType;
 
  public String getName() {
    return name;
  }
 
  public void setName(String name) {
    this.name = name;
  }
 
  public TimeType getTimeType() {
    return timeType;
  }
 
  public void setTimeType(TimeType timeType) {
    this.timeType = timeType;
  }
 
  public CalcType getCalcType() {
    return calcType;
  }
 
  public void setCalcType(CalcType calcType) {
    this.calcType = calcType;
  }
}