using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// DeviceGroup Data Structure.
///
[Serializable]
public class DeviceGroup : AopObject
{
///
/// 业务类型-代表不同的业务场景 distribution表示服务分发
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 描述信息
///
[XmlElement("description")]
public string Description { get; set; }
///
/// 该分组的设备数
///
[XmlElement("device_count")]
public long DeviceCount { get; set; }
///
/// 创建时间
///
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
///
/// 最后修改时间
///
[XmlElement("gmt_modified")]
public string GmtModified { get; set; }
///
/// 分组id
///
[XmlElement("group_id")]
public long GroupId { get; set; }
///
/// 分组名称
///
[XmlElement("group_name")]
public string GroupName { get; set; }
}
}