Files
tnb.server/EquipMgr/Tnb.EquipMgr.Entities/Dto/EquipDaqQueryOutput.cs
2023-11-08 09:31:18 +08:00

17 lines
615 B
C#

namespace Tnb.EquipMgr.Entities.Dto
{
public class EquipDaqQueryOutput
{
public string? id { get; set; }
public string? data_source { get; set; }
public string create_id { get; set; } = string.Empty;
public string? create_time { get; set; }
public string? data_type { get; set; }
public string? enabled { get; set; }
public string? equip_id { get; set; }
public string? equip_code { get; set; }
public string? label_name { get; set; }
public string? label_point { get; set; }
public string? remark { get; set; }
}
}