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