16 lines
542 B
C#
16 lines
542 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; }
|
|
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; }
|
|
}
|
|
} |