using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AmpeDeviceVO Data Structure. /// [Serializable] public class AmpeDeviceVO : AopObject { /// /// 数据插入时间 /// [XmlElement("add_time")] public string AddTime { get; set; } /// /// 设备id /// [XmlElement("device_id")] public string DeviceId { get; set; } /// /// 设备机型id /// [XmlElement("model_id")] public long ModelId { get; set; } /// /// 设备机型名称 /// [XmlElement("model_name")] public string ModelName { get; set; } /// /// 设备机型编号 /// [XmlElement("model_no")] public string ModelNo { get; set; } /// /// 产品id /// [XmlElement("product_id")] public long ProductId { get; set; } /// /// 产品名称 /// [XmlElement("product_name")] public string ProductName { get; set; } } }