namespace Yw.Entity { /// /// Dma点位映射关系 /// [SugarTable("dma_site_mapping")] public class DmaSiteMapping : BaseEntity, System.ICloneable { /// /// /// public DmaSiteMapping() { } /// /// /// public DmaSiteMapping(DmaSiteMapping rhs) : base(rhs) { 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 int Direction { get; set; } /// /// /// public DmaSiteMapping Clone() { return (DmaSiteMapping)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }