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
package com.dingzhuo.compute.engine.message.calculation;
 
import com.dingzhuo.compute.engine.message.ExecuteType;
import com.dingzhuo.compute.engine.message.BaseActorMessage;
import com.dingzhuo.energy.common.utils.time.TimeType;
 
/**
 * @author fanxinfu
 */
public class CalculateMessage extends BaseActorMessage {
 
  private String timeCode;
  private TimeType timeType;
  private ExecuteType executeType;
 
  public CalculateMessage(String actorId, String timeCode, TimeType timeType,
      ExecuteType executeType) {
    super(actorId);
    this.timeCode = timeCode;
    this.timeType = timeType;
    this.executeType = executeType;
  }
 
  public String getTimeCode() {
    return timeCode;
  }
 
  public void setTimeCode(String timeCode) {
    this.timeCode = timeCode;
  }
 
  public TimeType getTimeType() {
    return timeType;
  }
 
  public void setTimeType(TimeType timeType) {
    this.timeType = timeType;
  }
 
  public ExecuteType getExecuteType() {
    return executeType;
  }
 
  public void setExecuteType(ExecuteType executeType) {
    this.executeType = executeType;
  }
}