You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
namespace CellularManagement.Application.Features.TerminalDevices.Commands.UpdateTerminalDevice;
|
|
|
|
/// <summary>
|
|
/// 更新终端设备响应
|
|
/// </summary>
|
|
public class UpdateTerminalDeviceResponse
|
|
{
|
|
/// <summary>
|
|
/// 设备ID
|
|
/// </summary>
|
|
public string DeviceId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 设备名称
|
|
/// </summary>
|
|
public string DeviceName { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 设备编码
|
|
/// </summary>
|
|
public string DeviceCode { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 设备描述
|
|
/// </summary>
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Agent端口
|
|
/// </summary>
|
|
public int AgentPort { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public bool IsEnabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备类型
|
|
/// </summary>
|
|
public string DeviceType { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
public DateTime? UpdatedAt { get; set; }
|
|
}
|
|
|