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