using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BusinessPoint Data Structure.
///
[Serializable]
public class BusinessPoint : AopObject
{
///
/// 点位描述
///
[XmlElement("point_desc")]
public string PointDesc { get; set; }
///
/// 业务点位id
///
[XmlElement("point_id")]
public long PointId { get; set; }
///
/// 点位名称
///
[XmlElement("point_name")]
public string PointName { get; set; }
///
/// 点位备注
///
[XmlElement("remark")]
public string Remark { get; set; }
///
/// 点位状态
///
[XmlElement("status")]
public long Status { get; set; }
}
}