namespace Yw.Entity
|
{
|
/// <summary>
|
/// Dma点位映射关系
|
/// </summary>
|
[SugarTable("dma_site_mapping")]
|
public class DmaSiteMapping : BaseEntity, 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>
|
/// 点位id
|
/// </summary>
|
public long SiteID { get; set; }
|
|
/// <summary>
|
/// 分区id
|
/// </summary>
|
public long AreaID { get; set; }
|
|
/// <summary>
|
/// 方向
|
/// </summary>
|
public int Direction { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public DmaSiteMapping Clone()
|
{
|
return (DmaSiteMapping)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|