Files
tnb.server/EquipMgr/Tnb.EquipMgr.Entities/Dto/EquipDaqQueryOutput.cs
2023-11-06 19:35:59 +08:00

16 lines
567 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? label_name { get; set; }
public string? label_point { get; set; }
public string? remark { get; set; }
}
}