2025-07-21 14:35:17 +08:00
|
|
|
using DMS.Core.Enums;
|
|
|
|
|
|
|
|
|
|
namespace DMS.Application.DTOs;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 用于在UI上显示变量表基本信息的DTO。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class VariableTableDto
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
|
public int DeviceId { get; set; }
|
2025-09-02 16:45:24 +08:00
|
|
|
public DeviceDto Device { get; set; }
|
2025-07-21 14:35:17 +08:00
|
|
|
public ProtocolType Protocol { get; set; }
|
2025-07-27 21:08:58 +08:00
|
|
|
public List<VariableDto> Variables { get; set; } = new();
|
2025-07-21 14:35:17 +08:00
|
|
|
}
|