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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.dingzhuo.compute.engine.message.save;
 
import com.dingzhuo.energy.common.utils.time.TimeType;
import java.util.ArrayList;
import java.util.List;
 
/**
 * @author fanxinfu
 */
public class SaveMessage {
 
  private String indexId;
  private String timeCode;
  private TimeType timeType;
  private double value;
  private List<String> postActorIds = new ArrayList<>();
 
  public String getTimeCode() {
    return timeCode;
  }
 
  public void setTimeCode(String timeCode) {
    this.timeCode = timeCode;
  }
 
  public double getValue() {
    return value;
  }
 
  public void setValue(double value) {
    this.value = value;
  }
 
  public List<String> getPostActorIds() {
    return postActorIds;
  }
 
  public String getIndexId() {
    return indexId;
  }
 
  public void setIndexId(String indexId) {
    this.indexId = indexId;
  }
 
  public TimeType getTimeType() {
    return timeType;
  }
 
  public void setTimeType(TimeType timeType) {
    this.timeType = timeType;
  }
}