namespace Yw.Model
|
{
|
/// <summary>
|
/// Dma点位映射
|
/// </summary>
|
public partial class DmaSiteMapping : BaseModel, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public DmaSiteMapping() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public DmaSiteMapping(DmaSiteMapping rhs) : base(rhs)
|
{
|
this.SiteID = rhs.SiteID;
|
this.AreaID = rhs.AreaID;
|
this.Direction = rhs.Direction;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public void Reset(DmaSiteMapping rhs)
|
{
|
this.ID = rhs.ID;
|
this.SiteID = rhs.SiteID;
|
this.AreaID = rhs.AreaID;
|
this.Direction = rhs.Direction;
|
}
|
|
/// <summary>
|
/// 点位id
|
/// </summary>
|
public long SiteID { get; set; }
|
|
/// <summary>
|
/// 分区id
|
/// </summary>
|
public long AreaID { get; set; }
|
|
/// <summary>
|
/// 方向
|
/// </summary>
|
public eDirection Direction { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public DmaSiteMapping Clone()
|
{
|
return new DmaSiteMapping(this);
|
}
|
|
object ICloneable.Clone()
|
{
|
return Clone();
|
}
|
}
|
|
}
|