namespace Yw.Application
{
///
///
///
public class DmaSiteMappingDto
{
///
///
///
public DmaSiteMappingDto() { }
///
///
///
public DmaSiteMappingDto(Model.DmaSiteMapping rhs)
{
this.ID = rhs.ID;
this.SiteID = rhs.SiteID;
this.AreaID = rhs.AreaID;
this.Direction = rhs.Direction;
}
///
/// id
///
public long ID { get; set; }
///
/// 点位id
///
public long SiteID { get; set; }
///
/// 分区id
///
public long AreaID { get; set; }
///
/// 方向
///
public eDirection Direction { get; set; }
}
}