namespace CellularManagement.Application.Features.TerminalDevices.Commands.UpdateTerminalDevice; /// /// 更新终端设备响应 /// public class UpdateTerminalDeviceResponse { /// /// 设备ID /// public string DeviceId { get; set; } = string.Empty; /// /// 设备名称 /// public string DeviceName { get; set; } = string.Empty; /// /// 设备编码 /// public string DeviceCode { get; set; } = string.Empty; /// /// 设备描述 /// public string Description { get; set; } = string.Empty; /// /// Agent端口 /// public int AgentPort { get; set; } /// /// 是否启用 /// public bool IsEnabled { get; set; } /// /// 设备类型 /// public string DeviceType { get; set; } = string.Empty; /// /// 更新时间 /// public DateTime? UpdatedAt { get; set; } }