using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using System.ComponentModel.DataAnnotations;
namespace IStation.Model
{
///
/// Dma点位映射
///
public partial class DmaSiteMapping : System.ICloneable
{
///
///
///
public DmaSiteMapping() { }
///
///
///
public DmaSiteMapping(DmaSiteMapping rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
this.DmaSiteID = rhs.DmaSiteID;
this.DmaAreaID = rhs.DmaAreaID;
this.Direction=rhs.Direction;
}
///
///
///
public void Reset(DmaSiteMapping rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
this.DmaSiteID = rhs.DmaSiteID;
this.DmaAreaID = rhs.DmaAreaID;
this.Direction = rhs.Direction;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// Dma点位标识
///
public long DmaSiteID { get; set; }
///
/// Dma分区标识
///
public long DmaAreaID { get; set; }
///
/// 方向
///
public eDmaDirection Direction { get; set; }
///
///
///
public DmaSiteMapping Clone()
{
return (DmaSiteMapping)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}