RobotRegisteredDomainEvent.cs
1.96 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
namespace Rcs.Domain.Entities.DomainEvents
{
/// <summary>
/// 机器人注册领域事件
/// </summary>
public sealed record RobotRegisteredDomainEvent : IDomainEvent
{
/// <summary>
/// 机器人系统ID
/// </summary>
public Guid RobotId { get; init; }
/// <summary>
/// 机器人编码
/// </summary>
public string RobotCode { get; init; }
/// <summary>
/// 机器人名称
/// </summary>
public string RobotName { get; init; }
/// <summary>
/// 机器人序列号
/// </summary>
public string RobotSerialNumber { get; init; }
/// <summary>
/// 制造商
/// </summary>
public string RobotManufacturer { get; init; }
/// <summary>
/// 机器人类型
/// </summary>
public RobotType RobotType { get; init; }
/// <summary>
/// 协议名称
/// </summary>
public string ProtocolName { get; init; }
/// <summary>
/// 协议版本
/// </summary>
public string ProtocolVersion { get; init; }
/// <summary>
/// 事件发生时间
/// </summary>
public DateTime OccurredAt { get; init; }
public RobotRegisteredDomainEvent(
Guid robotId,
string robotCode,
string robotName,
string robotSerialNumber,
string robotManufacturer,
RobotType robotType,
string protocolName,
string protocolVersion)
{
RobotId = robotId;
RobotCode = robotCode;
RobotName = robotName;
RobotSerialNumber = robotSerialNumber;
RobotManufacturer = robotManufacturer;
RobotType = robotType;
ProtocolName = protocolName;
ProtocolVersion = protocolVersion;
OccurredAt = DateTime.Now;
}
}
}