ChargingPileDto.cs
2.34 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
namespace Rcs.Application.DTOs
{
/// <summary>
/// Charging pile detail DTO.
/// </summary>
public class ChargingPileDto
{
public string PileId { get; set; } = string.Empty;
public string PileCode { get; set; } = string.Empty;
public string PileName { get; set; } = string.Empty;
public string IpAddress { get; set; } = string.Empty;
public int Port { get; set; }
public int MinChargingMinutes { get; set; }
public decimal FullChargeThreshold { get; set; }
public List<string> SupportedRobotModels { get; set; } = new();
public List<string> BoundRobotIds { get; set; } = new();
public string? CurrentChargingRobotId { get; set; }
public string? MapNodeId { get; set; }
public decimal AutoStartThreshold { get; set; }
public decimal ResumeThreshold { get; set; }
public int MaxChargingMinutes { get; set; }
public int QueueTimeoutMinutes { get; set; }
public int Priority { get; set; }
public bool AllowTaskInterrupt { get; set; }
public bool IsActive { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
}
/// <summary>
/// Charging pile list item DTO.
/// </summary>
public class ChargingPileListItemDto
{
public string PileId { get; set; } = string.Empty;
public string PileCode { get; set; } = string.Empty;
public string PileName { get; set; } = string.Empty;
public string IpAddress { get; set; } = string.Empty;
public int Port { get; set; }
public int MinChargingMinutes { get; set; }
public decimal FullChargeThreshold { get; set; }
public List<string> SupportedRobotModels { get; set; } = new();
public List<string> BoundRobotIds { get; set; } = new();
public string? CurrentChargingRobotId { get; set; }
public string? MapNodeId { get; set; }
public decimal AutoStartThreshold { get; set; }
public decimal ResumeThreshold { get; set; }
public int MaxChargingMinutes { get; set; }
public int QueueTimeoutMinutes { get; set; }
public int Priority { get; set; }
public bool AllowTaskInterrupt { get; set; }
public bool IsActive { get; set; }
public DateTime CreatedAt { get; set; }
}
}